Bump symfony/twig-bundle from 5.4.36 to 6.1.11 #381
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
pull_request: | |
branches: | |
- '**' | |
env: | |
APP_ENV: test | |
WIKI_URL: "https://commons.wikimedia.org/w/api.php" | |
jobs: | |
build: | |
strategy: | |
matrix: | |
php: [ '8.2', '8.3' ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{matrix.php}} | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install | |
run: | | |
sudo apt-get update -q | |
sudo apt-get install -y librsvg2-bin | |
composer install | |
npm ci | |
- name: Build | |
run: | | |
npm run build | |
- name: Test | |
run: | | |
composer test | |
npm run test | |
./bin/console | |
git status | |
git status | grep "nothing to commit, working tree clean" |