-
Notifications
You must be signed in to change notification settings - Fork 612
53 lines (42 loc) · 1.05 KB
/
check-toc.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Check TOC
on:
workflow_dispatch:
push:
paths:
- 'site/**'
- 'scripts/**'
- '.github/workflows/**'
jobs:
toc:
name: TOC
if: "!contains(github.event.head_commit.message, '[ci skip]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_PAT || github.token }}
ref: ${{ github.ref }}
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: 'yarn'
- name: Install Node dependencies
run: yarn --frozen-lockfile
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
- name: Setup data
run: yarn data
- name: Build Jekyll
run: |
pushd site
bundle install
bundle exec jekyll build -q
popd
- name: Build TOC
run: scripts/generate-toc
- name: Setup Git remote
run: scripts/setup-git-ci.sh
- name: Check and Commit
run: scripts/check-and-commit-toc.sh