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 18c8e88 commit 2465562Copy full SHA for 2465562
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: Install and test eslint-plugin-ava
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
+ paths-ignore:
8
+ - '*.md'
9
+jobs:
10
+ nodejs:
11
+ name: Node.js
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ node-version: [^10.18.0, ^12.14.0, ^13.5.0]
17
+ steps:
18
+ - uses: actions/checkout@v1
19
+ with:
20
+ fetch-depth: 1
21
+ - uses: actions/setup-node@v1
22
23
+ node-version: ${{ matrix.node-version }}
24
+ - run: npm install --no-audit
25
+ - run: npm test
26
+ - uses: codecov/codecov-action@v1
27
28
+ token: ${{ secrets.CODECOV_TOKEN }}
.travis.yml
0 commit comments