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
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ jobs:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
# https://github.com/actions/checkout
- name: 🏗️ Check out repository code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true

# https://github.com/actions/setup-node
- name: 🏗️ Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: "22.14.0"
node-version: "24.14.1"
cache: "yarn"

- name: 🏗️ Install dependencies
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/visual-regression-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,27 @@ jobs:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
# https://github.com/actions/checkout
- name: 🏗️ Check out repository code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true
fetch-depth: 0

# https://github.com/actions/setup-node
- name: 🏗️ Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: "22.14.0"
node-version: "24.14.1"
cache: "yarn"

- name: 🏗️ Install dependencies
run: yarn install --immutable

# https://github.com/chromaui/action
# https://github.com/chromaui/chromatic-cli
- name: ☑️ Build Chromatic
uses: chromaui/action@v12.2.0
uses: chromaui/action@v16.2.0
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
exitZeroOnChanges: ${{ github.ref == 'refs/heads/master' && true || false }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Typey Type avoids generic typing features, such as competing for speed and accur

### Requirements

Install [yarn](https://yarnpkg.com/lang/en/docs/install/). Note: the project is currently built with Node version 22.
Install [yarn](https://yarnpkg.com/lang/en/docs/install/). Note: the project is currently built with Node version 24.

### Installation

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"@vitest/coverage-v8": "4.1.4",
"@vitest/eslint-plugin": "^1.6.13",
"@vitest/ui": "4.1.4",
"chromatic": "^12.2.0",
"chromatic": "16.2.0",
"esbuild": "0.27.4",
"eslint": "9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
Expand All @@ -149,7 +149,7 @@
"vitest": "4.1.4"
},
"engines": {
"node": ">=22.14.0"
"node": ">=24.14.1"
},
"packageManager": "yarn@4.13.0"
}
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3964,9 +3964,9 @@ __metadata:
languageName: node
linkType: hard

"chromatic@npm:^12.2.0":
version: 12.2.0
resolution: "chromatic@npm:12.2.0"
"chromatic@npm:16.2.0":
version: 16.2.0
resolution: "chromatic@npm:16.2.0"
peerDependencies:
"@chromatic-com/cypress": ^0.*.* || ^1.0.0
"@chromatic-com/playwright": ^0.*.* || ^1.0.0
Expand All @@ -3979,7 +3979,7 @@ __metadata:
chroma: dist/bin.js
chromatic: dist/bin.js
chromatic-cli: dist/bin.js
checksum: 10c0/c40c977c589fe03d788103281c3e000224049c65932f67293e9825faadccc654931f1b68ec442beb516d87449d00420d73e3984103b49faca42ead1c12867932
checksum: 10c0/9de6ec3e405970f429f056906f16e5fd4c4340ab587fc24dd91a16df32a06b7ad614f60791e7cdfc46033f5e3a5f28037f8e90afba6372ce68975b5951e8daf0
languageName: node
linkType: hard

Expand Down Expand Up @@ -9270,7 +9270,7 @@ __metadata:
"@vitest/coverage-v8": "npm:4.1.4"
"@vitest/eslint-plugin": "npm:^1.6.13"
"@vitest/ui": "npm:4.1.4"
chromatic: "npm:^12.2.0"
chromatic: "npm:16.2.0"
clipboard: "npm:^1.7.1"
d3-array: "npm:^3.1.1"
d3-format: "npm:^3.1.0"
Expand Down
Loading