Update testing CI #57
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: Run PHPCS, PHPLint, Psalm and Cypress | |
on: [pull_request, push] | |
jobs: | |
PHPS: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Show PHPCS sniffs | |
run: ./vendor/bin/phpcs -i | |
- name: Show PHPCS version | |
run: ./vendor/bin/phpcs --version | |
- name: Run PHP_CodeSniffer | |
run: composer phpcs | |
PHPLint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Show PHPLint version info | |
run: ./vendor/bin/phplint --version | |
- name: Run PHPLint | |
run: composer phplint | |
Psalm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Show PHPCS sniffs | |
run: ./vendor/bin/phpcs -i | |
- name: Show version info | |
run: ./vendor/bin/psalm --version | |
- name: Run Psalm | |
run: composer psalm | |
Cypress: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Install node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
- name: Install dependencies | |
run: npm install | |
- name: Cypress run | |
uses: cypress-io/github-action@v2 | |
with: | |
start: npm run wp-env start | |
wait-on: "http://localhost:8888" | |
browser: chrome | |
headless: true |