Skip to content

Commit dc91bfd

Browse files
author
Steven Weingärtner
committed
chore: update dependencies
1 parent e62ffc6 commit dc91bfd

30 files changed

Lines changed: 13456 additions & 25538 deletions

.gitlab-ci.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,32 @@ stages:
44
- build
55
- release
66

7-
image: node:lts-alpine
7+
image: node:18-alpine
88

99
variables:
1010
GIT_STRATEGY: fetch
1111

1212
setup:modules:
1313
stage: setup
1414
script:
15-
- npm config set legacy-peer-deps true
16-
- npx lerna bootstrap
15+
- npm ci
1716
artifacts:
1817
name: "node_modules_$CI_COMMIT_REF_NAME"
1918
paths:
20-
- packages/**/node_modules
19+
- node_modules
2120
expire_in: 1 hour
2221

2322
test:lint:
2423
stage: test
25-
script: npx lerna run lint
24+
script: npm run check:code-style -ws
2625

2726
test:test:
2827
stage: test
29-
script: npx lerna run test
28+
script: npm test -ws
3029

3130
build:package:
3231
stage: build
33-
script: npx lerna run build
32+
script: npm run build -ws
3433
artifacts:
3534
name: "dist_$CI_COMMIT_REF_NAME"
3635
paths:

lerna.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@
44
],
55
"version": "2.3.1",
66
"command": {
7-
"bootstrap": {
8-
"npmClientArgs": [
9-
"--no-package-lock"
10-
]
11-
},
127
"publish": {
138
"skipGit": true,
149
"allowBranch": "master",

0 commit comments

Comments
 (0)