chore(deps): update pnpm to v9.12.3 #656
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 - Lib | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
ci-lib: | |
name: CI - Lib | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/lib | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
corepack: true | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm i | |
working-directory: ./ | |
- name: Run linters | |
run: pnpm lint | |
# - name: Type check | |
# run: pnpm typecheck | |
- name: Run unit test | |
run: pnpm test | |
- name: Build the lib | |
run: pnpm build |