forked from vcpkg/vcpkg.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (26 loc) · 728 Bytes
/
Copy pathvalidate.yml
File metadata and controls
33 lines (26 loc) · 728 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
name: Site Validation
on:
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
env:
Codeql.Enabled: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Restore NPM cache
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Rebuild and validate website
run: scripts/rebuild.sh
- name: Check for differences
run: |
if ! git diff --quiet; then
echo "::error ::Detected changes when regenerating website."
git diff --stat
exit 1
fi