mediawiki-skins-Citizen/.github/workflows/grunt.yml

28 lines
384 B
YAML
Raw Normal View History

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-26 07:20:26 +00:00
2019-12-26 17:55:09 +00:00
- name: Run Grunt test
run: npm run test