Add modular directory to targetLocations checked by typecheck #4679
This file contains 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: 'Validate' | |
on: | |
push: | |
branches: [main, 'release/**', 'feature/**'] | |
pull_request: | |
branches: [main, 'release/**', 'feature/**'] | |
jobs: | |
check-yarn-lock-registry: | |
name: 'Validate yarn.lock' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3.3.0 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Install Dependencies | |
run: yarn --frozen-lockfile | |
- name: Check yarn.lock registry url | |
run: yarn validate-lockfile |