-
Notifications
You must be signed in to change notification settings - Fork 353
72 lines (59 loc) · 2.05 KB
/
lint.yml
File metadata and controls
72 lines (59 loc) · 2.05 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Lint
on:
push:
branches: main
pull_request:
branches: main
jobs:
lint:
name: lint and link check
runs-on: ubuntu-22.04-xl
permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Deno
uses: denoland/setup-deno@v2
with:
cache: true
- run: deno fmt --check
- run: deno task test
- name: "Reference: install"
working-directory: "reference_gen"
run: deno install
- name: "Reference: generate types"
working-directory: "reference_gen"
run: deno task types
- name: "Reference: generate docs"
working-directory: "reference_gen"
run: deno task doc
- name: Restore OG image cache
uses: actions/cache@v4
id: og-cache
with:
path: .og-cache
key: og-images-${{ hashFiles('open_graph/**') }}
restore-keys: og-images-
- name: Build
env:
ORAMA_PROJECT_ID: ${{ vars.ORAMA_PROJECT_ID }}
ORAMA_DATASOURCE_ID: ${{ vars.ORAMA_DATASOURCE_ID }}
ORAMA_PRIVATE_API_KEY: ${{ secrets.ORAMA_PRIVATE_API_KEY }}
SKIP_OG: ${{ steps.og-cache.outputs.cache-hit == 'true' && '1' || '' }}
run: deno task build
- name: Restore cached OG images
if: steps.og-cache.outputs.cache-hit == 'true'
run: cp -r .og-cache/_site/* _site/ 2>/dev/null || true
- name: Save OG images to cache
if: steps.og-cache.outputs.cache-hit != 'true'
run: |
mkdir -p .og-cache/_site
cd _site && find . -name "index.png" -exec cp --parents {} ../.og-cache/_site/ \;
- name: Run server
run: deno run --allow-read=. --allow-net --allow-env --lock=deno.lock server.ts &
- name: Link checker
env:
DOCS_ROOT: "http://localhost:8000"
run: deno run --no-lock --allow-net --allow-env .github/workflows/better_link_checker.ts