Skip to content

Commit

Permalink
test node version environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Dec 13, 2023
1 parent 5d4c602 commit 6954c6e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Expand Up @@ -6,6 +6,8 @@ on:
tags:
- v*
pull_request:
env:
NODE_VERSION: "18.15.0"

jobs:
ci:
Expand All @@ -14,7 +16,7 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: "18.15.0"
node-version: ${{ env.NODE_VERSION }}
- run: npm ci
- run: npm run build
- run: npm run test
Expand Down

0 comments on commit 6954c6e

Please sign in to comment.