Proper path for workflows configuration

This commit is contained in:
svartalf 2019-09-19 13:20:25 +03:00
parent 7ad8591ba0
commit 8e306a9c7f

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

@ -0,0 +1,18 @@
name: Continuous integration
on: [pull_request, push]
jobs:
check_pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: "npm ci"
run: npm ci
- name: "npm run build"
run: npm run build
- name: "npm run test"
run: npm run test