Skip to content

Commit

Permalink
ci: bump Node.js and Vite version
Browse files Browse the repository at this point in the history
  • Loading branch information
Menci committed Dec 10, 2023
1 parent 5cf57b2 commit 05e85d7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,21 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
node: ["14", "16", "18", "20"]
vite: ["2", "3", "4"]
vite: ["2", "3", "4", "5"]
exclude:
- node: "14"
vite: "5"
- node: "16"
vite: "5"
name: Node.js ${{ matrix.node }} + Vite ${{ matrix.vite }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Set yarn to ignore engines version check
run: yarn config set ignore-engines true
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Install specified version of Vite
Expand Down

0 comments on commit 05e85d7

Please sign in to comment.