Migrate to pnpm #87
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: Main | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Restore cached npm dependencies | |
id: cache-dependencies-restore | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
node_modules | |
~/.cache/Cypress # needed for the Cypress binary | |
key: npm-dependencies-${{ hashFiles('pnpm-lock.yaml') }} | |
- run: pnpm install --frozen-lockfile | |
- name: Cache npm dependencies | |
id: cache-dependencies-save | |
uses: actions/cache/save@v3 | |
with: | |
path: | | |
node_modules | |
~/.cache/Cypress # needed for the Cypress binary | |
key: ${{ steps.cache-dependencies-restore.outputs.cache-primary-key }} | |
- name: Format the code | |
run: pnpm run prettier | |
- name: Check the code style | |
run: pnpm run lint | |
- name: Check the types | |
run: pnpm run check-types | |
- name: Build the project | |
run: pnpm run build |