This repository was archived by the owner on Feb 3, 2026. It is now read-only.
[TOOL-5868] - Add renovate config #31
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: Build and tests | |
| on: | |
| pull_request: {} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| - run: yarn install | |
| - run: yarn build | |
| - run: yarn test | |
| - run: git diff --exit-code | |
| # Tests | |
| - name: Focus install should not affect the lock files | |
| run: | | |
| yarn workspaces focus yarn-plugin-workspace-lockfile | |
| git diff --exit-code | |
| - name: Immutable install should error if the lock files are changed | |
| run: | | |
| echo "Not part of lockfile" >> yarn.workspace.lock | |
| yarn install --immutable && exit 1 || exit 0 | |
| git checkout yarn.workspace.lock |