We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 554eefe commit 6ee0e67Copy full SHA for 6ee0e67
.github/workflows/main.yml
@@ -7,7 +7,7 @@ jobs:
7
runs-on: ${{ matrix.os }}
8
strategy:
9
matrix:
10
- node: ['18.x', '20.x']
+ node: ['22.x', '24.x']
11
os: [ubuntu-latest, macOS-latest]
12
13
steps:
@@ -18,15 +18,19 @@ jobs:
18
uses: actions/setup-node@v4
19
with:
20
node-version: ${{ matrix.node }}
21
-
22
- - name: Install deps and build (with cache)
23
- uses: bahmutov/npm-install@v1
+
+ - uses: pnpm/action-setup@v4
+ name: Install pnpm
24
+ with:
25
+ version: 10
26
+ - name: Install dependencies
27
+ run: pnpm install
28
29
- name: Lint
- run: yarn lint
30
+ run: pnpm lint
31
32
- name: Test
- run: yarn test
33
+ run: pnpm test
34
35
- name: Build
- run: yarn build
36
+ run: pnpm build
0 commit comments