We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a07520 commit 8a24546Copy full SHA for 8a24546
.github/workflows/CI.yml
@@ -12,7 +12,7 @@ jobs:
12
strategy:
13
matrix:
14
os: [ubuntu-22.04, windows-2022]
15
- node: [20]
+ node: [18, 20]
16
runs-on: ${{ matrix.os }}
17
steps:
18
- uses: actions/checkout@v4
Dockerfile.ci
@@ -1,4 +1,4 @@
1
-FROM docker.io/library/node:20-buster AS builder
+FROM docker.io/library/node:18-buster AS builder
2
WORKDIR /src
3
COPY . ./
4
RUN yarn install && \
@@ -23,7 +23,7 @@ RUN yarn install && \
23
# Default commitlint config
24
npm pack @commitlint/config-conventional
25
26
-FROM docker.io/library/node:20-buster
+FROM docker.io/library/node:18-buster
27
COPY --from=builder /src/*.tgz ./
28
RUN npm install -g *.tgz && \
29
rm -rf *.tgz
0 commit comments