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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
node: ["20"]
node: ["24"]
name: ALCS Frontend Tests - ${{ matrix.node }}/${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -30,7 +30,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
node: ["20"]
node: ["24"]
name: Portal Frontend Tests - ${{ matrix.node }}/${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -48,7 +48,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
node: ["20"]
node: ["24"]
name: API Tests - ${{ matrix.node }}/${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
node: ["20"]
node: ["24"]
name: Coverage Report ALCS Frontend - ${{ matrix.node }}/${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -22,7 +22,7 @@ jobs:
- run: npm install
- run: npm run build
- run: npm run test:cov
- if: matrix.node == '20'
- if: matrix.node == '24'
uses: actions/upload-artifact@v4
with:
name: coverage-alcs-frontend
Expand All @@ -36,7 +36,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
node: ["20"]
node: ["24"]
name: Coverage Report Portal Frontend - ${{ matrix.node }}/${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -47,7 +47,7 @@ jobs:
- run: npm install
- run: npm run build
- run: npm run test:cov
- if: matrix.node == '20'
- if: matrix.node == '24'
uses: actions/upload-artifact@v4
with:
name: coverage-portal-frontend
Expand All @@ -61,7 +61,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
node: ["20"]
node: ["24"]
name: Coverage Report API - ${{ matrix.node }}/${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -72,7 +72,7 @@ jobs:
- run: npm install
- run: npm run build
- run: npm run test:cov
- if: matrix.node == '20'
- if: matrix.node == '24'
uses: actions/upload-artifact@v4
with:
name: coverage-api
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schemaspy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 20
node-version: 24
- run: |
sudo apt-get install --yes --no-install-recommends postgresql-client
- run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
npm ci
npm run test:cov
dir: services
node_version: "22"
node_version: "24"
sonar_args: >
-Dsonar.exclusions=**/coverage/**,**/node_modules/**,**/*spec.ts
-Dsonar.organization=bcgov-sonarcloud
Expand All @@ -67,7 +67,7 @@ jobs:
npm ci
npm run test:cov
dir: alcs-frontend
node_version: "22"
node_version: "24"
sonar_args: >
-Dsonar.exclusions=**/coverage/**,**/node_modules/**,**/*spec.ts
-Dsonar.organization=bcgov-sonarcloud
Expand All @@ -92,7 +92,7 @@ jobs:
npm ci
npm run test:cov
dir: portal-frontend
node_version: "22"
node_version: "24"
sonar_args: >
-Dsonar.exclusions=**/coverage/**,**/node_modules/**,**/*spec.ts
-Dsonar.organization=bcgov-sonarcloud
Expand Down
Loading