Skip to content

v1.2.1

v1.2.1 #507

Workflow file for this run

name: Tests
on:
push:
branches:
- main
paths:
- "**.php"
- "**.tsx"
- "**.ts"
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP with tools
uses: shivammathur/setup-php@v2
with:
php-version: "7.4"
tools: composer, cs2pr, phpcs
- name: Build
run: |
yarn install
composer install
- name: Linting the code
run: |
vendor/bin/phpcs -i
vendor/bin/phpcs --config-show
npm run lint
continue-on-error: true
- name: Running the tests
run: npm run test