Skip to content

Commit

Permalink
Fix github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joswarmer committed May 9, 2024
1 parent 96b389f commit 9e553b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ jobs:

strategy:
matrix:
node-version: [ 18.x ]
node-version: [ 20.x ]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node-version }}
# cache: 'npm'
- run: npm install
- run: nmp run build
- run: npm run build
- run: npm run test

# - name: Send mail
Expand Down

0 comments on commit 9e553b9

Please sign in to comment.