You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .circleci/config.yml
+20-4
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ version: 2.1
2
2
3
3
aliases:
4
4
- &docker
5
-
- image: circleci/openjdk:8-jdk-node-browsers
5
+
- image: cimg/openjdk:17.0.0-node
6
6
7
7
- &environment
8
8
TZ: /usr/share/zoneinfo/America/Los_Angeles
@@ -209,7 +209,20 @@ jobs:
209
209
- run: yarn workspaces info | head -n -1 > workspace_info.txt
210
210
- *restore_node_modules
211
211
- run: yarn lint-build
212
-
- run: scripts/circleci/check_minified_errors.sh
212
+
213
+
check_error_codes:
214
+
docker: *docker
215
+
environment: *environment
216
+
steps:
217
+
- checkout
218
+
- attach_workspace: *attach_workspace
219
+
- run: yarn workspaces info | head -n -1 > workspace_info.txt
220
+
- *restore_node_modules
221
+
- run:
222
+
name: Search build artifacts for unminified errors
223
+
command: |
224
+
yarn extract-errors
225
+
git diff || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
0 commit comments