2019-12-26 07:30:32 +00:00
|
|
|
name: Grunt
|
2019-12-26 06:52:37 +00:00
|
|
|
|
2019-12-26 10:29:46 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '**'
|
2019-12-26 06:52:37 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2019-12-26 07:35:51 +00:00
|
|
|
npm install --save-dev
|
2019-12-26 07:10:53 +00:00
|
|
|
|
2019-12-26 17:55:09 +00:00
|
|
|
- name: Generate documentation
|
|
|
|
run: npm run doc
|
2019-12-29 00:05:24 +00:00
|
|
|
|
2019-12-29 00:10:17 +00:00
|
|
|
- name: Run stylelint autofix
|
2019-12-29 00:05:24 +00:00
|
|
|
run: npm run fix
|
2019-12-26 07:20:26 +00:00
|
|
|
|
2019-12-26 17:55:09 +00:00
|
|
|
- name: Run Grunt test
|
|
|
|
run: npm run test
|