2024-01-12 09:10:59 +03:00
|
|
|
name: Tests & Lint & Deploy to Railway
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-01-19 16:14:36 +03:00
|
|
|
php-versions: [ '8.2' ]
|
2024-01-19 16:42:10 +03:00
|
|
|
node-version: ['20.x']
|
2024-01-12 09:10:59 +03:00
|
|
|
|
|
|
|
steps:
|
2024-01-19 16:39:17 +03:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-12 09:10:59 +03:00
|
|
|
|
|
|
|
- name: Set up PHP ${{ matrix.php-versions }}
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
|
|
|
|
|
|
|
- name: PHP Security Checker
|
|
|
|
uses: StephaneBour/actions-php-security-checker@1.1
|
|
|
|
|
2024-01-19 16:39:17 +03:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
|
2024-01-16 10:55:50 +03:00
|
|
|
- name: Add keys
|
|
|
|
run: |
|
|
|
|
sudo curl -o ~/.composer/keys.tags.pub -sL https://composer.github.io/releases.pub
|
|
|
|
sudo curl -o ~/.composer/keys.dev.pub -sL https://composer.github.io/snapshots.pub
|
|
|
|
- run: echo $COMPOSER_AUTH|jq -r '.["github-oauth"]["github.com"]'|base64
|
|
|
|
- run: echo $GITHUB_TOKEN|base64
|
|
|
|
- name: Diagnose composer
|
|
|
|
env:
|
|
|
|
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH_JSON }} # only this works
|
|
|
|
run: composer diagnose -vvv
|
|
|
|
- name: Install dependencies
|
|
|
|
env:
|
|
|
|
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH_JSON }} # only this works
|
|
|
|
run: composer install # will work
|
|
|
|
|
2024-01-16 11:03:04 +03:00
|
|
|
- name: Setup sqlite3 driver
|
2024-01-19 16:19:27 +03:00
|
|
|
run: apt install php${{ matrix.php-versions }}-sqlite3
|
2024-01-16 11:03:04 +03:00
|
|
|
|
2024-01-12 09:10:59 +03:00
|
|
|
- name: Setup project
|
|
|
|
run: make setup
|
|
|
|
|
|
|
|
- name: Check lint
|
|
|
|
run: make lint
|
|
|
|
|
2024-01-16 11:05:22 +03:00
|
|
|
- name: Check tests
|
|
|
|
run: make test
|