Skip to content

Commit f025d67

Browse files
committed
Added basic GitHub Actions workflow to build the project
1 parent 2a80567 commit f025d67

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
- uses: actions/checkout@v1
8+
- name: Use Node.js 8
9+
uses: actions/setup-node@v1
10+
with:
11+
node-version: 8
12+
- name: "npm install"
13+
run: npm install
14+
- name: "Run Grunt"
15+
run: grunt

0 commit comments

Comments
 (0)