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 83d3caf commit 1d680d4Copy full SHA for 1d680d4
.github/workflows/ci.yml
@@ -12,7 +12,7 @@ jobs:
12
13
strategy:
14
matrix:
15
- node-version: [18.x, 20.x]
+ node-version: [20.x, 22.x]
16
17
steps:
18
- name: Checkout Repository
@@ -21,7 +21,7 @@ jobs:
21
fetch-depth: 1
22
23
- name: Setup Node ${{ matrix.node-version }}
24
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
25
with:
26
always-auth: false
27
node-version: ${{ matrix.node-version }}
@@ -30,10 +30,10 @@ jobs:
30
run: npm install
31
32
- name: Build
33
- run: npm run rollup
+ run: npm run build
34
35
- name: Run Tests
36
- run: npm run test
+ run: npm test
37
38
automerge:
39
needs: build
0 commit comments