Skip to content

Commit 2465562

Browse files
committed
Test using GitHub Actions
1 parent 18c8e88 commit 2465562

File tree

2 files changed

+28
-14
lines changed

2 files changed

+28
-14
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
23+
node-version: ${{ matrix.node-version }}
24+
- run: npm install --no-audit
25+
- run: npm test
26+
- uses: codecov/codecov-action@v1
27+
with:
28+
token: ${{ secrets.CODECOV_TOKEN }}

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)