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 1c2ffd2 commit aed2283Copy full SHA for aed2283
.github/workflows/CI.yaml
@@ -0,0 +1,31 @@
1
+name: CI
2
+on:
3
+ - push
4
+ - pull_request
5
+
6
+jobs:
7
8
+ test:
9
+ strategy:
10
+ matrix:
11
+ include:
12
+ - node: 10.x
13
+ - node: 12.x
14
+ - node: 14.x
15
+ - node: 16.x
16
+ - node: 18.x
17
+ - node: 20.x
18
19
+ name: Node ${{ matrix.node }}
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v4
23
24
+ - name: Install Node.js
25
+ uses: actions/setup-node@v4
26
+ with:
27
+ node-version: ${{ matrix.node }}
28
29
+ - run: npm install
30
31
+ - run: npm test
.gitignore
@@ -1,3 +1,4 @@
-.DS_Store
-node_modules
-coverage
+/.DS_Store
+/node_modules
+/coverage
+/package-lock.json
.travis.yml
0 commit comments