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

75 lines
1.4 KiB
YAML
Raw Normal View History

2019-09-15 23:27:57 +00:00
name: 'Test'
on:
pull_request:
2019-09-23 02:33:57 +00:00
types: [opened, synchronize]
push:
2019-11-03 04:29:31 +00:00
paths-ignore:
- '**.md'
2019-10-01 11:10:45 +00:00
branches:
- master
2019-09-15 23:27:57 +00:00
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: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
2019-09-15 23:27:57 +00:00
- name: Install dependencies
run: npm install
2019-09-15 23:27:57 +00:00
- 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
- name: Upload test coverage
uses: actions/upload-artifact@master
with:
name: coverage
path: coverage
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', 'windows-2019']
hugo-version: ['latest', '0.57.2']
extended: [true, false]
# exclude:
# - os: 'macOS-10.14'
# hugo-version: 'latest'
# extended: false
# - os: 'windows-2019'
# hugo-version: 'latest'
# extended: 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 }}