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 8fece54 commit f9ce73cCopy full SHA for f9ce73c
1 file changed
.github/workflows/main.yaml
@@ -1,21 +1,21 @@
1
name: CI
2
+
3
on:
- - push
4
- - pull_request
+ pull_request:
5
+ push:
6
+ branches: [main]
7
8
jobs:
9
test:
10
name: Node.js ${{ matrix.node-version }}
11
runs-on: ubuntu-latest
12
strategy:
13
fail-fast: false
14
matrix:
- node-version:
- - 14
- - 12
15
- - 10
+ node-version: [20, 18]
16
steps:
17
- - uses: actions/checkout@v2
18
- - uses: actions/setup-node@v1
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v3
19
with:
20
node-version: ${{ matrix.node-version }}
21
- run: npm install
0 commit comments