-
Notifications
You must be signed in to change notification settings - Fork 6
60 lines (58 loc) · 1.51 KB
/
audit.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
60
---
name: Audit on merge to main branch
on:
push:
branches:
- main
jobs:
audit:
name: Audit
strategy:
fail-fast: false
matrix:
script:
- system:npm-audit
- system:npm-doctor
- system:npm-outdated
- system:pip-audit
- system:pip-outdated
- wtf
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Re-use NPM cache
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Pull container base image
run: |
docker compose \
-f docker-compose-ci.yml \
pull
- name: Re-use container image layers
uses: jpribyl/action-docker-layer-caching@v0.1.1
continue-on-error: true
- name: Build container image
run: |
docker compose \
-f docker-compose-ci.yml \
build \
--build-arg USER_ID="$(id -u)" \
--build-arg GROUP_ID="$(id -g)"
- name: Install toolchain
run: |
docker compose \
-f docker-compose-ci.yml \
run docs \
npm ci
- name: Run script
run: |
docker compose \
-f docker-compose-ci.yml \
run docs \
npm run ${{ matrix.script }}