Skip to content

Commit

Permalink
fix(ci): update workflows to use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
rektdeckard committed Jan 11, 2024
1 parent 1309eb4 commit ca8bce8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ jobs:
uses: actions/cache@v1
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
key: nodeModules-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
nodeModules-
- name: Install dependencies
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile
env:
CI: true

- name: Test
run: yarn test
run: pnpm test
env:
CI: true

- name: Build
run: yarn build
run: pnpm build
env:
CI: true

0 comments on commit ca8bce8

Please sign in to comment.