Skip to content

Commit

Permalink
Try setting Node version 18.
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonkearns committed Oct 4, 2023
1 parent 36d352f commit 0c689e2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,15 @@ jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: |
npm install
npm run all

0 comments on commit 0c689e2

Please sign in to comment.