Skip to content

Commit 412780f

Browse files
committed
fix: feedback
1 parent 8173b8d commit 412780f

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ on:
77
workflow_dispatch:
88

99
jobs:
10+
check-versions:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: '20'
17+
cache: 'yarn'
18+
- run: yarn install --frozen-lockfile
19+
- run: node .husky/check-versions.js
1020
yarn-lockfile-check:
1121
uses: salesforcecli/github-workflows/.github/workflows/lockFileCheck.yml@main
1222
# Since the Windows unit tests take much longer, we run the linux unit tests first and then run the windows unit tests in parallel with NUTs

.github/workflows/validate-pr.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,15 @@ on:
99
- '2*-patch'
1010

1111
jobs:
12+
check-versions:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: '20'
19+
cache: 'yarn'
20+
- run: yarn install --frozen-lockfile
21+
- run: node .husky/check-versions.js
1222
pr-validation:
1323
uses: salesforcecli/github-workflows/.github/workflows/validatePR.yml@main

0 commit comments

Comments
 (0)