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 8194d4c commit e98ec31Copy full SHA for e98ec31
.github/workflows/pipeline.yml
@@ -0,0 +1,32 @@
1
+name: Pipeline
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ node-version: [12.x]
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Setup Node.js ${{ matrix.node-version }}
14
+ uses: actions/setup-node@v1
15
+ with:
16
+ node-version: ${{ matrix.node-version }}
17
+ - run: npm ci
18
+ - run: npm run lint
19
+ - run: npm run coverage
20
+ audit:
21
22
23
24
25
26
27
28
29
30
31
32
+ - run: npm audit
0 commit comments