Skip to content

Commit

Permalink
ci: setup CI with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lekterable committed Jul 8, 2021
1 parent 132d550 commit ee24740
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 6 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: master

pull_request:
branches: master

jobs:
build:
runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test:coverage
- uses: codecov/codecov-action@v1
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

0 comments on commit ee24740

Please sign in to comment.