We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b07417 commit e7a0238Copy full SHA for e7a0238
.github/workflows/cd.yaml
@@ -15,6 +15,7 @@ jobs:
15
with:
16
node-version: ${{ matrix.node }}
17
cache: 'npm'
18
+ - run: .github/workflows/scripts/skip-manpage-optimization.sh
19
- run: npm ci
20
- run: npx playwright install --with-deps --only-shell chromium
21
- run: npm run verify
.github/workflows/scripts/skip-manpage-optimization.sh
@@ -0,0 +1,10 @@
1
+#!/usr/bin/env bash
2
+
3
+# See: https://github.com/actions/runner-images/issues/10977#issuecomment-2549570980
4
5
+# Skip installing package docs {makes the man-db trigger much faster)
6
+sudo tee /etc/dpkg/dpkg.cfg.d/01_nodoc > /dev/null << 'EOF'
7
+path-exclude /usr/share/doc/*
8
+path-exclude /usr/share/man/*
9
+path-exclude /usr/share/info/*
10
+EOF
0 commit comments