2020-06-12 20:12:53 +02:00
|
|
|
name: Docs
|
2020-10-29 18:26:15 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- "dependabot/**"
|
|
|
|
pull_request:
|
|
|
|
|
2020-06-12 20:12:53 +02:00
|
|
|
env:
|
2020-11-23 20:32:25 +01:00
|
|
|
FORCE_COLOR: 2
|
2021-01-14 11:51:14 +01:00
|
|
|
NODE: 14
|
2020-06-12 20:12:53 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
docs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-10-29 18:26:15 +01:00
|
|
|
- name: Set up Node.js
|
2021-01-05 20:56:31 +01:00
|
|
|
uses: actions/setup-node@v2
|
2020-06-12 20:12:53 +02:00
|
|
|
with:
|
|
|
|
node-version: "${{ env.NODE }}"
|
|
|
|
|
2020-11-04 15:39:29 +01:00
|
|
|
- run: java -version
|
2020-06-12 20:12:53 +02:00
|
|
|
|
|
|
|
- name: Set up npm cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.npm
|
2021-02-08 20:41:10 +01:00
|
|
|
key: ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
|
2020-06-12 20:12:53 +02:00
|
|
|
restore-keys: |
|
2021-02-08 20:41:10 +01:00
|
|
|
${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
|
2020-06-12 20:12:53 +02:00
|
|
|
|
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Test docs
|
|
|
|
run: npm run docs
|