Fixed GitHub Actions syntax
This commit is contained in:
parent
f025d675a9
commit
6758bb50b9
23
.github/workflows/main.yml
vendored
23
.github/workflows/main.yml
vendored
@ -3,13 +3,16 @@ name: CI
|
|||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
tests:
|
||||||
- uses: actions/checkout@v1
|
name: "Tests"
|
||||||
- name: Use Node.js 8
|
runs-on: ubuntu-latest
|
||||||
uses: actions/setup-node@v1
|
steps:
|
||||||
with:
|
- uses: actions/checkout@v1
|
||||||
node-version: 8
|
- name: Use Node.js 8
|
||||||
- name: "npm install"
|
uses: actions/setup-node@v1
|
||||||
run: npm install
|
with:
|
||||||
- name: "Run Grunt"
|
node-version: 8
|
||||||
run: grunt
|
- name: "npm install"
|
||||||
|
run: npm install
|
||||||
|
- name: "Run Grunt"
|
||||||
|
run: grunt
|
||||||
|
Loading…
Reference in New Issue
Block a user