Skip to content

Commit

Permalink
🚚 move from Travis CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
blakek committed Nov 8, 2021
1 parent 1e5bccf commit 4009faf
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on: push

jobs:
run-tests:
runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
node_version:
- '12'
- '14'
- '16'

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{matrix.node_version}}
cache: 'yarn'
- run: yarn install
- run: yarn test
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

0 comments on commit 4009faf

Please sign in to comment.