Skip to content

fix: upgrade react-router-dom from 6.27.0 to 6.28.0 #1324

fix: upgrade react-router-dom from 6.27.0 to 6.28.0

fix: upgrade react-router-dom from 6.27.0 to 6.28.0 #1324

Workflow file for this run

name: CI
on: pull_request
jobs:
CI:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 14.15 ]
php: ['7.4']
steps:

Check failure on line 14 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer
- name: Install composer dependencies
run: composer config github-oauth.github.com ${{ secrets.PRIVATE_ACCESS_TOKEN }} && composer install --prefer-dist --no-suggest --no-progress
- name: PHPCS check
if: always()
uses: chekalsky/phpcs-action@v1
with:
phpcs_bin_path: './vendor/bin/phpcs'
- name: Use desired version of NodeJS
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: npm install
run: npm ci
- name: Build project
run: npm run build
- name: Lint JS
run: npm run lint:js