Skip to content
Merged
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/job-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ on:
value: ${{ jobs.azure-setup.outputs.IMAGE_TAG }}
QUOTA_FAILED:
description: "Quota Check Failed Flag"
value: ${{ jobs.azure-setup.outputs.QUOTA_FAILED }}
value: ${{ jobs.azure-setup.outputs.QUOTA_FAILED || 'false' }}

env:
GPT_MIN_CAPACITY: 150
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Build Frontend

on:
push:
branches: [ "main" ]
branches: [ "main", "dev" ]
paths:
- 'src/frontend/**/*.ts'
- 'src/frontend/**/*.tsx'
Expand All @@ -17,7 +17,7 @@ on:
- 'src/frontend/**/*.html'
- '.github/workflows/node.js.yml'
pull_request:
branches: [ "main" ]
branches: [ "main", "dev" ]
paths:
- 'src/frontend/**/*.ts'
- 'src/frontend/**/*.tsx'
Expand All @@ -37,7 +37,7 @@ jobs:
working-directory: src/frontend
strategy:
matrix:
node-version: [18.x, 21.x]
node-version: [20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -49,6 +49,5 @@ jobs:
cache: 'npm'
cache-dependency-path: 'src/frontend/package-lock.json'
- run: npm ci
- run: npm install --save-dev jest-environment-jsdom # Install missing package
- run: NODE_OPTIONS=--max_old_space_size=8192 npm run build --if-present
- run: npm run test --if-present
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main # Trigger on push to the main branch
- dev
paths:
- 'src/**/*.py'
- 'src/requirements*.txt'
Expand All @@ -16,6 +17,7 @@ on:
pull_request:
branches:
- main # Trigger on pull requests to the main branch
- dev
types:
- opened
- ready_for_review
Expand Down
Loading
Loading