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/workflows/check-generated-in-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: voidzero-dev/setup-vp@56918a6d0c629c55ae8b88826a7d47fda85769ee # v1.9.0
with:
node-version: 24
node-version: 26
cache: true
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
Expand Down
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: voidzero-dev/setup-vp@56918a6d0c629c55ae8b88826a7d47fda85769ee # v1.9.0
with:
node-version: 24
node-version: 26
cache: true
- run: vp check
build:
Expand All @@ -28,17 +28,24 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: voidzero-dev/setup-vp@56918a6d0c629c55ae8b88826a7d47fda85769ee # v1.9.0
with:
node-version: 24
node-version: 26
cache: true
- run: vp run build
test:
strategy:
fail-fast: false
matrix:
node: [22, 24]
# NOTE: We would like to test with Node.js 26 as well, but we are limited to Node.js 24 due to test failures on Windows.
# ref: https://github.com/libuv/libuv/issues/5010
node: [24]
os: [ubuntu-24.04-arm, macos-latest, windows-11-arm]
stylelint-version: ['17']
include:
# Configuration for Node.js 22
- node: 22
os: ubuntu-24.04-arm
stylelint-version: '17'
# Configuration for Stylelint 16
- node: 24
os: ubuntu-24.04-arm
stylelint-version: '16'
Expand All @@ -65,7 +72,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [22, 24]
node: [26]
os: [ubuntu-24.04-arm, macos-latest, windows-11-arm]
runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: voidzero-dev/setup-vp@56918a6d0c629c55ae8b88826a7d47fda85769ee # v1.9.0
with:
node-version: 24
node-version: 26
cache: true
- run: vp run build
- name: set release variables
Expand Down