mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
28 lines
384 B
YAML
28 lines
384 B
YAML
name: Grunt
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
npm install --save-dev
|
|
|
|
- name: Generate documentation
|
|
run: npm run doc
|
|
|
|
- name: Run Grunt test
|
|
run: npm run test
|