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 cec6be1 commit 4061f36Copy full SHA for 4061f36
.github/workflows/ci.yaml
@@ -10,23 +10,30 @@ on:
10
11
jobs:
12
build:
13
+ name: Build
14
runs-on: ubuntu-latest
15
16
strategy:
17
matrix:
- node-version: [16.x, 18.x]
18
+ node-version: [18.x, 20.x]
19
20
steps:
- - uses: actions/checkout@v3
21
+ - name: Checkout repository
22
+ uses: actions/checkout@v4
23
+
24
- name: Setup Node.js ${{ matrix.node-version }}
25
uses: actions/setup-node@v3
26
with:
27
node-version: ${{ matrix.node-version }}
28
29
- name: Install dependencies
30
run: npm ci
31
32
- name: Run linters
33
run: npm run lint:build
34
35
- name: Run tests
36
run: npm run test:build
37
38
- name: Build package
39
run: npm run dist
0 commit comments