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
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -367,6 +367,19 @@ jobs:
367
367
command: |
368
368
yarn extract-errors
369
369
git diff --quiet || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
370
+
371
+
check_generated_fizz_runtime:
372
+
docker: *docker
373
+
environment: *environment
374
+
steps:
375
+
- checkout
376
+
- attach_workspace: *attach_workspace
377
+
- *restore_node_modules
378
+
- run:
379
+
name: Confirm generated inline Fizz runtime is up to date
380
+
command: |
381
+
yarn generate-inline-fizz-runtime
382
+
git diff --quiet || (echo "There was a change to the Fizz runtime. Run `yarn generate-inline-fizz-runtime` and check in the result." && false)
0 commit comments