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 .codesandbox/ci.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sandboxes": ["vanilla", "vanilla-ts"],
"node": "18",
"node": "20",
"buildCommand": "build",
"packages": ["."]
}
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- run: yarn install --frozen-lockfile
Expand Down
24 changes: 17 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@ jobs:
name: Build and run test Suite
runs-on: ubuntu-latest

strategy:
matrix:
node: ['22.x']

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node
- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: ${{ matrix.node }}
cache: 'yarn'

- name: Install dependencies
Expand Down Expand Up @@ -45,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['20.x']
node: ['22.x']
ts: ['5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7', '5.8']
react:
[
Expand Down Expand Up @@ -107,11 +111,17 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['20.x']
node: ['22.x']
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'

- uses: actions/download-artifact@v4
with:
name: package
Expand All @@ -129,7 +139,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['20.x']
node: ['22.x']
example:
[
'cra4',
Expand Down Expand Up @@ -207,7 +217,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['20.x']
node: ['22.x']
example: ['rr-rsc-context']
defaults:
run:
Expand Down Expand Up @@ -252,7 +262,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['20.x']
node: ['22.x']
react:
[
{
Expand Down