Skip to content

Commit

Permalink
update test workflow to use node 18 exclusively
Browse files Browse the repository at this point in the history
  • Loading branch information
Sawyer Burnett committed Mar 14, 2024
1 parent ed75efb commit 9009bff
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,13 @@ on:
workflow_dispatch:

jobs:
matrix:
name: 'Node ${{ matrix.node }}'
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8.2.0
Expand All @@ -35,7 +30,5 @@ jobs:
restore-keys: ${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install

- name: Unit Test
run: pnpm run test

0 comments on commit 9009bff

Please sign in to comment.