Skip to content

Commit

Permalink
set node version in unit test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mahula committed Mar 9, 2024
1 parent adc9b69 commit 32b4f56
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/backend.test.unit.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
env:
WORKING_DIRECTORY: ./backend
steps:
- name: Set Node.js version
- uses: actions/setup-node@v4
with:
node-version: '>=21'
- name: Checkout code
uses: actions/checkout@v4

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/presenter.test.unit.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
env:
WORKING_DIRECTORY: ./presenter
steps:
- name: Set Node version
- uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout code
uses: actions/checkout@v4

Expand Down

0 comments on commit 32b4f56

Please sign in to comment.