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/actions/compute-schematic-matrix/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inputs:
description: "Comma-separated Angular version constraints (e.g. '^19,^20')"
node-versions:
required: true
description: "Comma-separated Node.js versions (e.g. '22.21.x,20.x')"
description: "Comma-separated Node.js versions (e.g. '24.19.x,20.x')"
outputs:
matrix:
value: ${{ steps.compute.outputs.matrix }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
} from './path-config';

const REPO_ROOT = join(__dirname, '..', '..', '..', '..');
const NODE_VERSIONS = ['22.21.x'];
const NODE_VERSIONS = ['24.19.x'];
const ANGULAR_VERSIONS = ['^20'];

const entryNames = (entries: MatrixEntry[]): string[] =>
Expand Down Expand Up @@ -114,7 +114,7 @@ describe('computeMatrix', () => {
it('driver entry has correct defaults', () => {
const [demo] = computeMatrix(['libs/dev-tools/src/component.ts'], config, NODE_VERSIONS, ANGULAR_VERSIONS);
expect(demo).toEqual({
node_version: '22.21.x',
node_version: '24.19.x',
angular_version: '^20',
driver: 'demo',
base: 'scss-standalone',
Expand All @@ -129,7 +129,7 @@ describe('computeMatrix', () => {
const entries = computeMatrix(['tools/schematics/ng-add/index.ts'], config, NODE_VERSIONS, ANGULAR_VERSIONS);
const entry = entries.find((e) => e.name === 'skip-package-json');
expect(entry).toEqual({
node_version: '22.21.x',
node_version: '24.19.x',
angular_version: '^20',
driver: 'in-memory',
base: 'scss-standalone',
Expand All @@ -145,7 +145,7 @@ describe('computeMatrix', () => {
const entries = computeMatrix(['tools/schematics/ng-add/index.ts'], config, NODE_VERSIONS, ANGULAR_VERSIONS);
const entry = entries.find((e) => e.name === 'module-app-rejection');
expect(entry).toEqual({
node_version: '22.21.x',
node_version: '24.19.x',
angular_version: '^20',
driver: 'in-memory',
base: 'scss-module',
Expand All @@ -161,7 +161,7 @@ describe('computeMatrix', () => {
const entries = computeMatrix(['tools/schematics/ng-add/index.ts'], config, NODE_VERSIONS, ANGULAR_VERSIONS);
const entry = entries.find((e) => e.name === 'css-style-failure');
expect(entry).toEqual({
node_version: '22.21.x',
node_version: '24.19.x',
angular_version: '^20',
driver: 'in-memory',
base: 'css-standalone',
Expand All @@ -177,7 +177,7 @@ describe('computeMatrix', () => {
const entries = computeMatrix(['tools/schematics/ng-add/index.ts'], config, NODE_VERSIONS, ANGULAR_VERSIONS);
const entry = entries.find((e) => e.name === 'no-app-routing');
expect(entry).toEqual({
node_version: '22.21.x',
node_version: '24.19.x',
angular_version: '^20',
driver: 'in-memory',
base: 'scss-standalone',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
*/
export interface MatrixEntry {
/**
* Node.js version for the test runner (e.g. `"22.21.x"`).
* Node.js version for the test runner (e.g. `"24.19.x"`).
*/
node_version: string;
/**
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [22.21.x]
node: [24.19.x]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [22.21.x]
node: [24.19.x]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
persist-credentials: false
- uses: graycoreio/github-actions/setup-node@main
with:
node-version: '22.21.x'
node-version: '24.19.x'
npm-version: ${{ env.NPM_VERSION }}
use-stamp-cache: true
- uses: nrwl/nx-set-shas@v3
Expand All @@ -129,7 +129,7 @@ jobs:
fail-fast: false
matrix:
package: ${{ fromJSON(needs.compute_packages.outputs.packages) }}
node: [22.21.x]
node: [24.19.x]
needs:
- compute_packages
- build
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
uses: ./.github/workflows/test-commerce-schematic.yml
with:
ref: ${{ inputs.ref && inputs.ref || github.sha }}
node-versions: '22.21.x'
node-versions: '24.19.x'
secrets:
NX_KEY: ${{ secrets.NX_KEY }}
AZURE_NX_CACHE_READONLY_CONNECTION_STRING: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING || secrets.AZURE_NX_CACHE_READONLY_CONNECTION_STRING }}
Expand All @@ -180,5 +180,5 @@ jobs:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
VERCEL_ORG: ${{ secrets.VERCEL_ORG }}
with:
artifact: daffio-22.21.x
artifact: daffio-24.19.x
artifact-zip-name: daffio.zip
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- uses: graycoreio/github-actions/setup-node@main
with:
node-version: 22.21.x
node-version: 24.19.x
npm-version: ${{ env.NPM_VERSION }}
use-stamp-cache: true
registry-url: 'https://registry.npmjs.org'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-commerce-schematic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
node-versions:
required: false
type: string
default: '22.21.x'
description: "Comma-separated Node.js versions (e.g. '22.21.x,20.x')"
default: '24.19.x'
description: "Comma-separated Node.js versions (e.g. '24.19.x,20.x')"
angular-versions:
required: false
type: string
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-search-index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- uses: graycoreio/github-actions/setup-node@main
with:
node-version: 22.21.x
node-version: 24.19.x
npm-version: ${{ env.NPM_VERSION }}
use-stamp-cache: true

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.21
24.19
25 changes: 8 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"@types/express": "^5.0.6",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^22.19.1",
"@types/node": "^24",
"@types/nunjucks": "^3.2.6",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
Expand Down
Loading