Skip to content

Commit

Permalink
Merge pull request #21 from TimonVS/chore/ci
Browse files Browse the repository at this point in the history
Set-up CI using GitHub Actions
  • Loading branch information
TimonVS committed Oct 8, 2019
2 parents f51fd67 + ebd7520 commit 030b28b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,21 @@
name: CI

on: [push]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install dependencies
run: npm ci
env:
CI: true
- name: Run tests
run: npm test
env:
CI: true

0 comments on commit 030b28b

Please sign in to comment.