File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ WORKDIR $APP
5
5
6
6
COPY package.json yarn.lock .yarnrc $APP/
7
7
COPY viz-lib $APP/viz-lib
8
- RUN npm install yarn@1.22.19 -g && yarn --frozen-lockfile --network-concurrency 1 > /dev/null
8
+ RUN npm install yarn@1.22.22 -g && yarn --frozen-lockfile --network-concurrency 1 > /dev/null
9
9
10
10
COPY . $APP
11
11
Original file line number Diff line number Diff line change 8
8
- master
9
9
env :
10
10
NODE_VERSION : 18
11
+ YARN_VERSION : 1.22.22
11
12
jobs :
12
13
backend-lint :
13
14
runs-on : ubuntu-22.04
88
89
cache : ' yarn'
89
90
- name : Install Dependencies
90
91
run : |
91
- npm install --global --force yarn@1.22.19
92
+ npm install --global --force yarn@$YARN_VERSION
92
93
yarn cache clean && yarn --frozen-lockfile --network-concurrency 1
93
94
- name : Run Lint
94
95
run : yarn lint:ci
@@ -115,7 +116,7 @@ jobs:
115
116
cache : ' yarn'
116
117
- name : Install Dependencies
117
118
run : |
118
- npm install --global --force yarn@1.22.19
119
+ npm install --global --force yarn@$YARN_VERSION
119
120
yarn cache clean && yarn --frozen-lockfile --network-concurrency 1
120
121
- name : Run App Tests
121
122
run : yarn test
@@ -152,7 +153,7 @@ jobs:
152
153
echo "CODE_COVERAGE=true" >> "$GITHUB_ENV"
153
154
- name : Install Dependencies
154
155
run : |
155
- npm install --global --force yarn@1.22.19
156
+ npm install --global --force yarn@$YARN_VERSION
156
157
yarn cache clean && yarn --frozen-lockfile --network-concurrency 1
157
158
- name : Setup Redash Server
158
159
run : |
Original file line number Diff line number Diff line change 46
46
47
47
- name : Install Dependencies
48
48
run : |
49
- npm install --global --force yarn@1.22.19
49
+ npm install --global --force yarn@1.22.22
50
50
yarn cache clean && yarn --frozen-lockfile --network-concurrency 1
51
51
52
52
- name : Set up Docker Buildx
Original file line number Diff line number Diff line change 1
1
FROM node:18-bookworm as frontend-builder
2
2
3
- RUN npm install --global --force yarn@1.22.19
3
+ RUN npm install --global --force yarn@1.22.22
4
4
5
5
# Controls whether to build the frontend assets
6
6
ARG skip_frontend_build
You can’t perform that action at this time.
0 commit comments