Skip to content

Commit beede3c

Browse files
committed
chore(vscode): move to central npm modules
1 parent fe7ed31 commit beede3c

6 files changed

Lines changed: 18728 additions & 17655 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- checkout
7878
- run:
7979
name: Install packages
80-
command: npm --prefix web/client ci
80+
command: npm ci
8181
- run:
8282
name: Build UI
8383
command: npm --prefix web/client run build

.circleci/continue_config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,19 +124,19 @@ jobs:
124124

125125
ui_test:
126126
docker:
127-
- image: mcr.microsoft.com/playwright:v1.40.1-jammy
127+
- image: mcr.microsoft.com/playwright:v1.52.0-jammy
128128
resource_class: medium
129129
steps:
130130
- halt_unless_client
131131
- checkout
132132
- restore_cache:
133133
keys:
134-
- v1-nm-cache-{{ checksum "web/client/package-lock.json" }}
134+
- v1-nm-cache-{{ checksum "package-lock.json" }}
135135
- run:
136136
name: Install packages
137-
command: npm --prefix web/client ci
137+
command: npm ci
138138
- save_cache:
139-
key: v1-nm-cache-{{ checksum "web/client/package-lock.json" }}
139+
key: v1-nm-cache-{{ checksum "package-lock.json" }}
140140
paths:
141141
- /root/.npm
142142
- run:

0 commit comments

Comments
 (0)