Skip to content

Commit

Permalink
Merge pull request #3 from mansona/github-ci
Browse files Browse the repository at this point in the history
move to github actions for CI
  • Loading branch information
mansona authored Apr 12, 2021
2 parents facbb6c + 3385649 commit 86581db
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 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
- main
pull_request:

env:
FORCE_COLOR: 1

jobs:
test:
name: Tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 10.x
- uses: mansona/npm-lockfile-version@v1
- run: npm ci
- run: npm test
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

0 comments on commit 86581db

Please sign in to comment.