We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4e926f commit 7ac2a6cCopy full SHA for 7ac2a6c
.github/workflows/ci.yml
@@ -8,26 +8,24 @@ on:
8
9
jobs:
10
build:
11
- timeout-minutes: 15
12
runs-on: ubuntu-latest
13
strategy:
14
- fail-fast: true
15
matrix:
16
node-version: [18.x, 20.x]
17
name: Build on v${{ matrix.node-version }}
18
steps:
19
- uses: actions/checkout@v4
20
+ - name: Setup pnpm
+ uses: pnpm/action-setup@v2
21
+ with:
22
+ version: latest
23
+
24
- name: Setup Node.js v${{ matrix.node-version }}
25
uses: actions/setup-node@v4
26
with:
27
node-version: ${{ matrix.node-version }}
28
cache: pnpm
29
- - name: Setup pnpm
- uses: pnpm/action-setup@v2
- with:
30
- version: latest
31
-
32
- run: pnpm install --frozen-lockfile
33
- run: pnpm build
0 commit comments