A0-3755 Faucet cleanup #1
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: PR commit | |
on: | |
pull_request: | |
merge_group: | |
# TESTING, remove before merge | |
push: | |
branches: | |
- A0-3755 | |
jobs: | |
pr: | |
continue-on-error: true | |
strategy: | |
matrix: | |
step: ['lint', 'build'] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: ${{ matrix.step }} | |
run: | | |
yarn install --immutable | |
yarn ${{ matrix.step }} |