Skip to content

Commit

Permalink
fixup! ci: use node LTS versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed Aug 6, 2024
1 parent 65999e9 commit 52f6751
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ on:
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Use Node.js LTS versions
uses: actions/setup-node@v3
with:
# use node 18.8.x until Agoric/agoric-sdk#8636
node-version: ['18.x', '20.x']
node-version: ${{ matrix.node-version }}
- name: yarn install
run: yarn
- name: yarn lint
Expand Down

0 comments on commit 52f6751

Please sign in to comment.