Added basic GitHub Actions workflow to build the project
This commit is contained in:
parent
2a80567151
commit
f025d675a9
15
.github/workflows/main.yml
vendored
Normal file
15
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Use Node.js 8
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 8
|
||||
- name: "npm install"
|
||||
run: npm install
|
||||
- name: "Run Grunt"
|
||||
run: grunt
|
Loading…
Reference in New Issue
Block a user