ci: update pnpm version in workflows #160
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: 'Check types' | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test-types: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v3 | |
name: Install pnpm | |
with: | |
version: 9 | |
- name: Install app dependencies | |
run: pnpm i | |
- name: Run typecheck | |
run: pnpm type-check |