We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4de50ae commit 7cd7f30Copy full SHA for 7cd7f30
.github/workflows/test.yml
@@ -0,0 +1,17 @@
1
+on: push
2
+
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ node: [ 12, 14, 16, 18 ]
9
+ name: Node ${{ matrix.node }} sample
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - name: Setup node
13
+ uses: actions/setup-node@v3
14
+ with:
15
+ node-version: ${{ matrix.node }}
16
+ - run: npm ci
17
+ - run: npm test
.jscsrc
.jshintrc
.travis.yml
0 commit comments