Skip to content

Commit

Permalink
ci: use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdyman committed Nov 11, 2022
1 parent 29b93aa commit b8e9213
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'

- name: Install Dependencies
run: yarn install --immutable
run: pnpm install --frozen-lockfile

- name: Build
run: yarn build
run: pnpm run build

- name: Test
run: yarn test:ci
run: pnpm run test:ci

- name: Upload Test Coverage
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit b8e9213

Please sign in to comment.