-
Notifications
You must be signed in to change notification settings - Fork 19
37 lines (32 loc) · 871 Bytes
/
main.yml
File metadata and controls
37 lines (32 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on: [push]
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
permissions:
pages: write
contents: write
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
checkLinks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm i -g markdown-link-check
- run: markdown-link-check ./README.md
buildPage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm ci
- run: npx gh-openapi-docs
- run: bash scripts/update-ghpages.sh