Show "unused catalog protocols warnings/errors" only if the unused catalog is one of the workspace's default catalogs #85
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: Test | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| test: | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: "22.11.0" | |
| registry-url: "https://registry.npmjs.org" | |
| - name: Install corepack | |
| run: | | |
| npm install -g corepack | |
| - name: Enable corepack | |
| run: | | |
| corepack enable | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Test | |
| run: | | |
| yarn test |