Skip to content

Commit

Permalink
Travis CI -> GitHub Actions 💚
Browse files Browse the repository at this point in the history
  • Loading branch information
derhuerst committed Jul 7, 2023
1 parent 5e96538 commit cc13f30
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 7 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: test

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['6', '8', '10', '12', '14', '16', '18']

steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install

- run: npm run lint
- run: npm test
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

0 comments on commit cc13f30

Please sign in to comment.