File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 48
48
context : .
49
49
file : ./Dockerfile
50
50
push : false
51
- env :
52
- HUSKY : 0
53
51
semantic-pr :
54
52
name : Validate PR title for semantic versioning
55
53
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ FROM apify/actor-node-playwright-chrome:18 AS builder
8
8
COPY --chown=myuser package*.json ./
9
9
10
10
# Install all dependencies. Don't audit to speed up the installation.
11
- RUN npm install --include=dev --audit=false
11
+ RUN HUSKY=0 npm install --include=dev --audit=false
12
12
13
13
# Next, copy the source files using the user set
14
14
# in the base image.
@@ -31,7 +31,8 @@ COPY --chown=myuser package*.json ./
31
31
# Install NPM packages, skip optional and development dependencies to
32
32
# keep the image small. Avoid logging too much and print the dependency
33
33
# tree for debugging
34
- RUN npm --quiet set progress=false \
34
+ RUN HUSKY=0 \
35
+ npm --quiet set progress=false \
35
36
&& npm install --omit=dev --omit=optional \
36
37
&& echo "Installed NPM packages:" \
37
38
&& (npm list --omit=dev --all || true) \
You can’t perform that action at this time.
0 commit comments