mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
23 lines
377 B
YAML
23 lines
377 B
YAML
name: Grunt
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
npm install --save-dev grunt-eslint
|
|
npm install --save-dev eslint-config-wikimedia
|
|
|
|
#- name: Generate documentation
|
|
# run: npm run doc
|
|
|
|
- name: Grunt test
|
|
run: grunt test
|