Set up GitHub workflow

This commit is contained in:
Kir_Antipov 2021-09-25 17:04:10 +03:00
parent 5a416adca9
commit 2fa488cdc0

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

@ -0,0 +1,22 @@
name: ci
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js v12
uses: actions/setup-node@v1
with:
node-version: 12
- name: Set up node modules
run: npm ci
- name: Execute tests
run: npm run test
- name: Build artifacts
run: npm run build