Skip to content

Use replacement placeholders in the render command #392

Use replacement placeholders in the render command

Use replacement placeholders in the render command #392

Workflow file for this run

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"