Skip to content

Commit f9ce73c

Browse files
authored
chore(ci): update Node versions used in CI test (#6)
1 parent 8fece54 commit f9ce73c

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/main.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
name: CI
2+
23
on:
3-
- push
4-
- pull_request
4+
pull_request:
5+
push:
6+
branches: [main]
7+
58
jobs:
69
test:
710
name: Node.js ${{ matrix.node-version }}
811
runs-on: ubuntu-latest
912
strategy:
1013
fail-fast: false
1114
matrix:
12-
node-version:
13-
- 14
14-
- 12
15-
- 10
15+
node-version: [20, 18]
1616
steps:
17-
- uses: actions/checkout@v2
18-
- uses: actions/setup-node@v1
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-node@v3
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121
- run: npm install

0 commit comments

Comments
 (0)