Skip to content

Commit 462a3b2

Browse files
authored
Merge pull request #190 from MichaelDeBoey/eslint-7
feat: Support ESLint 7.x
2 parents 6a20f34 + e2b1fcc commit 462a3b2

File tree

5 files changed

+1188
-1025
lines changed

5 files changed

+1188
-1025
lines changed

.github/workflows/CI.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: CI
2+
on:
3+
push: {}
4+
pull_request: {}
5+
jobs:
6+
main:
7+
strategy:
8+
matrix:
9+
node: [10.12, 10, 12.0, 12, 14, 15]
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: 🛑 Cancel Previous Runs
13+
uses: styfle/[email protected]
14+
with:
15+
access_token: ${{ secrets.GITHUB_TOKEN }}
16+
17+
- name: ⬇️ Checkout repo
18+
uses: actions/checkout@v2
19+
20+
- name: ⎔ Setup node
21+
uses: actions/setup-node@v2
22+
with:
23+
node-version: ${{ matrix.node }}
24+
25+
- name: 📥 Download deps
26+
uses: bahmutov/npm-install@v1
27+
with:
28+
useLockFile: false
29+
30+
- name: ▶️ Run test script
31+
run: npm run test -- --runInBand

.travis.yml

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

0 commit comments

Comments
 (0)