Skip to content

Commit

Permalink
ci: update node versions (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio committed Apr 21, 2024
1 parent 013b757 commit cbd3114
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/nodejs.yml
Expand Up @@ -9,18 +9,24 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16.x, 18.x]
node-version: [18.x, 20.x]

runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- uses: pnpm/action-setup@v2

- name: Install Dependencies
run: pnpm install

- name: Build
run: pnpm build

- name: Test
run: pnpm test

0 comments on commit cbd3114

Please sign in to comment.