Skip to content

Commit

Permalink
ci: update node version to v20
Browse files Browse the repository at this point in the history
  • Loading branch information
escapedcat committed Feb 19, 2024
1 parent dccc081 commit 0e64d60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04, windows-2022]
node: [18, 20]
node: [20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.ci
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/node:18-buster AS builder
FROM docker.io/library/node:20-buster AS builder
WORKDIR /src
COPY . ./
RUN yarn install && \
Expand All @@ -23,7 +23,7 @@ RUN yarn install && \
# Default commitlint config
npm pack @commitlint/config-conventional

FROM docker.io/library/node:18-buster
FROM docker.io/library/node:20-buster
COPY --from=builder /src/*.tgz ./
RUN npm install -g *.tgz && \
rm -rf *.tgz
Expand Down

0 comments on commit 0e64d60

Please sign in to comment.