actions-hugo/.github/workflows/test.yml

57 lines
1.0 KiB
YAML
Raw Normal View History

2019-09-15 23:27:57 +00:00
name: 'Test'
on: push
jobs:
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
2019-09-15 23:27:57 +00:00
- name: Install dependencies
run: npm ci
- name: Format check
run: npm run format:check
2019-09-15 23:27:57 +00:00
- name: Lint
run: npm run lint
- name: Test
run: npm test
- uses: actions/upload-artifact@master
with:
name: coverage
path: coverage
2019-09-15 23:27:57 +00:00
# - name: Build production
# run: npm run build
2019-09-15 23:27:57 +00:00
test-prod:
runs-on: ${{ matrix.os }}
needs: test
2019-09-15 23:27:57 +00:00
strategy:
matrix:
# os: ['ubuntu-18.04', 'macOS-10.14']
os: ['ubuntu-18.04', 'macOS-10.14', 'windows-2019']
# hugo-version: ['latest']
# extended: [true]
hugo-version: ['latest', '0.57.2']
extended: [true, false]
2019-09-15 23:27:57 +00:00
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
2019-09-15 23:27:57 +00:00
- name: Test action
uses: ./
with:
hugo-version: ${{ matrix.hugo-version }}
extended: ${{ matrix.extended }}