build(ci): use github actions

This commit is contained in:
Alexander Zeitler 2021-04-10 22:01:29 +02:00
parent a59476f65d
commit ad6e008e1a

17
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: Node.js CI
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-18.04
name: Test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12'
- run: yarn
- run: yarn test