Skip to content

Commit

Permalink
use GitHub Actions for CI (new-xkit#2009)
Browse files Browse the repository at this point in the history
  • Loading branch information
AprilSylph authored Nov 19, 2020
1 parent df4aeea commit 56b8350
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 10 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 14

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit 56b8350

Please sign in to comment.