Skip to content

Commit

Permalink
chore(ci): switching from travis to github actions (#532)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbanksdesign authored Feb 3, 2021
1 parent 6078c80 commit a1e1eb4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on:
pull_request:
branches: [ $default-branch, "3.0" ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 15.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

0 comments on commit a1e1eb4

Please sign in to comment.