We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 529b46f commit 91b67bdCopy full SHA for 91b67bd
1 file changed
.github/workflows/test.yml
@@ -1,24 +1,20 @@
1
name: Test
2
3
-on: [push, pull_request]
+on: [ push, pull_request ]
4
5
jobs:
6
build:
7
runs-on: ubuntu-latest
8
9
- strategy:
10
- matrix:
11
- node-version: [16.x, 18.x]
12
-
13
steps:
14
- uses: actions/checkout@v3
15
- uses: pnpm/action-setup@v2
16
with:
17
version: 8
18
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Setup Node.js
19
uses: actions/setup-node@v3
20
21
- node-version: ${{ matrix.node-version }}
+ node-version: 20
22
cache: 'pnpm'
23
- name: Install dependencies
24
run: pnpm install
@@ -29,4 +25,4 @@ jobs:
29
25
env:
30
26
CI: true
31
27
- name: Build
32
- run: yarn build
28
+ run: pnpm build
0 commit comments