Add GitHub Actions
This commit is contained in:
parent
8993077adc
commit
f8c76c3ddc
|
|
@ -0,0 +1,15 @@
|
||||||
|
name: CI
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Run test
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
npm test
|
||||||
Loading…
Reference in New Issue