Skip to content

Commit

Permalink
fix: setup node with pnpm first before using cache
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikg committed Aug 4, 2023
1 parent 391bff4 commit 6451ccb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,20 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: corepack enable
- run: pnpm --version
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
id: setup-node
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
id: setup-deno
continue-on-error: true
- run: corepack enable
- run: pnpm --version
- run: pnpm i --frozen-lockfile
- run: pnpm tsx ecosystem-ci.ts ${{ matrix.suite }}

0 comments on commit 6451ccb

Please sign in to comment.