Skip to content

Commit 1831596

Browse files
mfranzkenmerget
andauthored
refactor: updating node to version 24 (#3923)
* refactor: updating node to 23 in preparation to version 24 https://nodejs.org/en/about/previous-releases * Update action.yml * refactor: updated Node version * refactor: updated package lock file * refactor: updated package lock file * refactor: updated package lock file * fix: path * Update default.ts --------- Co-authored-by: Nicolas Merget <[email protected]>
1 parent 19b3e22 commit 1831596

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/actions/npm-cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inputs:
1313
nodeVersion:
1414
description: "Node version"
1515
required: false
16-
default: "22"
16+
default: "24"
1717
runs:
1818
using: "composite"
1919
steps:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22
1+
24

showcases/e2e/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { expect, type Page, test } from '@playwright/test';
22
import { AxeBuilder } from '@axe-core/playwright';
33
import { close, getCompliance } from 'accessibility-checker';
44
import { type ICheckerError } from 'accessibility-checker/lib/api/IChecker';
5-
import { type FullProject } from 'playwright/types/test';
5+
import { type FullProject } from 'playwright/types';
66
import { COLORS, lvl1 } from './fixtures/variants';
77
import { setScrollViewport } from './fixtures/viewport';
88

showcases/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { devices, type PlaywrightTestConfig } from '@playwright/test';
2-
import { type Project } from 'playwright/types/test';
2+
import { type Project } from 'playwright/types';
33
import showcaseConfig from './playwright.showcase';
44

55
const projects: Project[] = [

0 commit comments

Comments
 (0)