Skip to content

Commit 8a24546

Browse files
committed
Revert "ci: update node version to v20"
This reverts commit 0e64d60.
1 parent 2a07520 commit 8a24546

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-22.04, windows-2022]
15-
node: [20]
15+
node: [18, 20]
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- uses: actions/checkout@v4

Dockerfile.ci

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/library/node:20-buster AS builder
1+
FROM docker.io/library/node:18-buster AS builder
22
WORKDIR /src
33
COPY . ./
44
RUN yarn install && \
@@ -23,7 +23,7 @@ RUN yarn install && \
2323
# Default commitlint config
2424
npm pack @commitlint/config-conventional
2525

26-
FROM docker.io/library/node:20-buster
26+
FROM docker.io/library/node:18-buster
2727
COPY --from=builder /src/*.tgz ./
2828
RUN npm install -g *.tgz && \
2929
rm -rf *.tgz

0 commit comments

Comments
 (0)