Skip to content

Commit

Permalink
ci: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
euaaaio committed Nov 11, 2023
1 parent 4b783c0 commit b3c60e7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest

- name: Install Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 17
node-version: 20
cache: pnpm

- name: Install dependencies
Expand All @@ -32,19 +32,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 14, 12]
node-version: [18, 16, 14, 12]
name: Node.js ${{ matrix.node-version }} Quick
steps:
- name: Checkout the repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest

- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
Expand Down

0 comments on commit b3c60e7

Please sign in to comment.