-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (53 loc) · 1.45 KB
/
pull-request.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
54
55
56
57
58
59
name: pull request
on: [pull_request]
jobs:
build:
name: build
runs-on: ubuntu-latest
outputs:
cache_key: ${{ steps.cache_key.outputs.cache_key }}
steps:
- uses: actions/checkout@v3
- id: cache_key
run: echo "cache_key=${{ hashFiles('**/**') }}-v1" >> "$GITHUB_OUTPUT"
- uses: actions/cache@v3
id: cache
with:
path: .
key: ${{ steps.cache_key.outputs.cache_key }}
- if: steps.cache.outputs.cache-hit != true
uses: actions/setup-node@v3
with:
node-version: 18
- if: steps.cache.outputs.cache-hit != true
run: npm install
- if: steps.cache.outputs.cache-hit != true
env:
ELEVENTY_ENV: production
run: npm run build
validate_html:
needs: [build]
name: validate html
runs-on: ubuntu-latest
steps:
- uses: actions/cache/restore@v3
with:
key: ${{ needs.build.outputs.cache_key }}
path: .
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm run test:html-validation
validate_links_use_helper:
needs: [build]
name: validate links use helper
runs-on: ubuntu-latest
steps:
- uses: actions/cache/restore@v3
with:
key: ${{ needs.build.outputs.cache_key }}
path: .
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm run test:prefixed-links