fix: install dev deps on gh actions (part 2) #4
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: Pull Request Lint | |
on: | |
pull_request: | |
jobs: | |
faency: | |
name: Test, lint and build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: yarn | |
- name: Install | |
run: yarn install --immutable --immutable-cache --check-cache | |
- name: Test | |
run: yarn test:ci | |
- name: Build | |
run: yarn build |