Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/accessibility_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
run: yarn build:actions
env:
NODE_OPTIONS: --max_old_space_size=4096
- name: Get changed/new pages to run accessibility tests on
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_for_console_errors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Dependencies
run: yarn
- name: Run Build
run: yarn build:release
run: yarn build:actions
env:
NODE_OPTIONS: --max_old_space_size=4096
- name: Run Server
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@
"build": "next build",
"postbuild": "node tasks/postBuildTasks.mjs",
"build:release": "yarn build && next-image-export-optimizer --exportFolderPath client/www/next-build",
"build:actions": "BUILD_ENV=production yarn build:release",
"next-build": "next build",
"next-start": "next start",
"prepare": "husky install",
Expand Down
Loading