Skip to content

Commit

Permalink
Start migrating to GitHub Actions for CI
Browse files Browse the repository at this point in the history
BrowserStack based testing yet missing..
  • Loading branch information
carhartl committed Jan 4, 2022
1 parent 0371f69 commit d72cb51
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 22 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]

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

This file was deleted.

0 comments on commit d72cb51

Please sign in to comment.