Skip to content

Commit

Permalink
bug in latest node, use lts version
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanak-michal committed Jul 17, 2024
1 parent fb5e127 commit 0110a3c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/jest-wss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: latest
node-version: 'lts/*'

- name: npm install
run: npm ci

- name: jest run test
env:
URL: wss://127.0.0.1:9270
URL: 'wss://127.0.0.1:9270'
NODE_TLS_REJECT_UNAUTHORIZED: 0
run: npm run test
2 changes: 1 addition & 1 deletion .github/workflows/jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: latest
node-version: 'lts/*'

- name: npm install
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'latest'
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'
- run: npm ci

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: latest
node-version: 'lts/*'

- name: Install dependencies
run: npm ci
Expand Down

0 comments on commit 0110a3c

Please sign in to comment.