Skip to content

Commit d18297e

Browse files
authored
Merge pull request #286 from ringcentral/fixTypo
Fix Typo
2 parents f522b06 + 3315e28 commit d18297e

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/release-with-tag.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest # Firefox in it
1010
strategy:
1111
matrix:
12-
node-version: [22.x]
12+
node-version: [22.14.0]
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
@@ -18,11 +18,14 @@ jobs:
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
registry-url: "https://registry.npmjs.org"
21+
- run: node --version
2122
- name: Upgrade npm for trusted publishing compatibility
2223
run: |
2324
npm i -g npm@^11.5.1
2425
npm --version
2526
- run: yarn install
27+
- run: node --version
28+
- run: npm --version
2629
- run: DEBUG=eslint:cli-engine npm run lint:all
2730
- run: npm run build
2831
- run: npm run test:browser

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest # Firefox in it
88
strategy:
99
matrix:
10-
node-version: [22.x]
10+
node-version: [22.14.0]
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414
- name: Use Node.js ${{ matrix.node-version }}
1515
uses: actions/setup-node@v4
1616
with:

0 commit comments

Comments
 (0)