File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
12
- - name : Use Node (latest)
12
+ - name : Use Node
13
13
uses : actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
14
14
with :
15
- node-version-file : ' .nvmrc '
15
+ node-version : 21
16
16
- name : Docker test
17
17
run : |
18
18
docker run -d -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio:5
34
34
run : |
35
35
source scripts/e2e-setup-ci.sh
36
36
npm init --force
37
- npm install jest --registry http://localhost:4873
37
+ npm install jest@27.5.1 --registry http://localhost:4873
38
38
npm install verdaccio --registry http://localhost:4873
39
39
echo "test('require module should works', () => { const {runServer} = require('verdaccio') });" | tee module.spec.js
40
40
cat module.spec.js
Original file line number Diff line number Diff line change 12
12
/. *
13
13
.vscode /
14
14
.circleci /
15
- debug /
16
15
docker-examples /
17
16
reports /
18
17
# # assets and website
Original file line number Diff line number Diff line change 1
- FROM --platform=${BUILDPLATFORM:-linux/amd64} node:20.11 .1-alpine as builder
1
+ FROM --platform=${BUILDPLATFORM:-linux/amd64} node:20.12 .1-alpine as builder
2
2
3
3
ENV NODE_ENV=production \
4
4
VERDACCIO_BUILD_REGISTRY=https://registry.npmjs.org \
@@ -30,7 +30,7 @@ RUN yarn pack --out verdaccio.tgz \
30
30
# # clean up and reduce bundle size
31
31
RUN rm -Rf /opt/verdaccio-build
32
32
33
- FROM node:20.11 .1-alpine
33
+ FROM node:20.12 .1-alpine
34
34
LABEL maintainer="https://github.com/verdaccio/verdaccio"
35
35
36
36
ENV VERDACCIO_APPDIR=/opt/verdaccio \
You can’t perform that action at this time.
0 commit comments