Add github actions instead of Travis CI

This commit is contained in:
Pavel Lobashov 2020-10-27 11:28:14 +03:00
parent c1f4d46f75
commit 165924db8b
No known key found for this signature in database
GPG key ID: 47F57222688BE1AA

15
.github/workflows/check.yml vendored Normal file
View file

@ -0,0 +1,15 @@
name: check
on: [push]
jobs:
project-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12
- name: Build using grunt
run: |
npm install
grunt --level=ADVANCED