feat: use the right LWC/Dev server version for the org @W-20405334@ #1332
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: pr-validation | |
| on: | |
| pull_request: | |
| types: [opened, reopened, edited] | |
| # only applies to PRs that want to merge to main or patch branches | |
| branches: | |
| - main | |
| - '2*-patch' | |
| jobs: | |
| check-versions: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'yarn' | |
| - run: yarn install --frozen-lockfile | |
| - run: node .husky/check-versions.js | |
| pr-validation: | |
| uses: salesforcecli/github-workflows/.github/workflows/validatePR.yml@main |