fix(build): use network requests as well to find subresources #213
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: Node CI (PR) | |
| on: | |
| pull_request: {} | |
| env: | |
| PUPPETEER_SKIP_DOWNLOAD: 1 | |
| PUPPETEER_EXECUTABLE_PATH: /usr/bin/google-chrome | |
| jobs: | |
| lint: | |
| name: Check linting issues | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: codespell-project/actions-codespell@v2 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version-file: ".nvmrc" | |
| cache: pnpm | |
| - run: pnpm i | |
| - run: pnpm lint | |
| - run: pnpm typecheck |