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 df33933 commit 795eac2Copy full SHA for 795eac2
.github/workflows/ci.yml
@@ -11,7 +11,6 @@ on:
11
12
jobs:
13
build:
14
-
15
runs-on: ${{ matrix.os }}
16
17
strategy:
@@ -30,3 +29,21 @@ jobs:
30
29
run: npm install --no-package-lock
31
- name: Run CI Tests
32
run: npm run ci
+
33
+ pnpm:
34
+ runs-on: ubuntu-latest
35
36
+ steps:
37
+ - uses: actions/checkout@v4
38
+ - name: Use pnpm latest
39
+ uses: pnpm/action-setup@v4
40
+ with:
41
+ version: latest
42
+ - name: Use Node.js latest
43
+ uses: actions/setup-node@v4
44
45
+ node-version: latest
46
+ - name: Install dependencies
47
+ run: pnpm install
48
+ - name: Run CI Tests
49
+ run: npm test
0 commit comments