-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (39 loc) · 1.26 KB
/
vendor-integrity.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
name: Verify vendored integrity
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build_and_verify:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set git config to ignore line endings
run: |
git config --global core.autocrlf input
git config --global core.safecrlf false
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "23"
- name: Install dependencies
run: npm install
- name: Run build:bootstrap
run: npm run build:bootstrap
- name: Run build:dsicons
run: npm run build:dsicons
- name: Run build:font-awesome
run: npm run build:font-awesome
- name: Run build:jquery
run: npm run build:jquery
- name: Run build:leaflet
run: npm run build:leaflet
- name: Run build:montserrat
run: npm run build:montserrat
- name: Check git diff
run: |
git diff --exit-code