Add github actions instead of Travis CI
This commit is contained in:
parent
c1f4d46f75
commit
165924db8b
15
.github/workflows/check.yml
vendored
Normal file
15
.github/workflows/check.yml
vendored
Normal 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
|
Loading…
Reference in a new issue