Skip to content

Commit

Permalink
Merge pull request #190 from MichaelDeBoey/eslint-7
Browse files Browse the repository at this point in the history
feat: Support ESLint 7.x
  • Loading branch information
xjamundx committed Apr 9, 2021
2 parents 6a20f34 + e2b1fcc commit 462a3b2
Show file tree
Hide file tree
Showing 5 changed files with 1,188 additions and 1,025 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI
on:
push: {}
pull_request: {}
jobs:
main:
strategy:
matrix:
node: [10.12, 10, 12.0, 12, 14, 15]
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.8.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}

- name: ⬇️ Checkout repo
uses: actions/checkout@v2

- name: ⎔ Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
with:
useLockFile: false

- name: ▶️ Run test script
run: npm run test -- --runInBand
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit 462a3b2

Please sign in to comment.