wp-now: Update Playground and PHP WASM dependencies #722
Workflow file for this run
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: | |
- trunk | |
pull_request: | |
jobs: | |
# This step: | |
# * Warms up the node_modules cache | |
# * Performs linting and typechecking | |
# | |
# The linting tasks take ~5s to complete and it doesn't | |
# make sense to separate them into separate steps that would | |
# take ~25s just to run git clone and restore node_modules. | |
lint-and-typecheck: | |
name: 'Lint and typecheck' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/prepare-playground | |
- run: npx nx affected --target=lint | |
- run: npx nx affected --target=typecheck | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
extensions: mbstring, zip, pdo_mysql | |
- name: Install Composer dependencies | |
run: composer install | |
- name: Run PHPCS | |
run: vendor/bin/phpcs | |
test: | |
runs-on: ubuntu-latest | |
needs: [lint-and-typecheck] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/prepare-playground | |
- run: npx nx affected --target=test --configuration=ci |