fix(cli): #1768 warn about and skip get static paths values that collide with an existing page #2508
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: Continuous Integration Windows | |
| on: [pull_request] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| node: [24, 26] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - uses: pnpm/action-setup@v6 | |
| name: Install pnpm | |
| with: | |
| version: latest | |
| - name: Installing project dependencies | |
| run: | | |
| yarn install --frozen-lockfile --network-timeout 1000000 | |
| - name: Install Puppeteer Browser | |
| # manually install chrome binary | |
| run: | | |
| npx puppeteer browsers install chrome | |
| - name: Test | |
| run: | | |
| yarn test | |
| - name: Build | |
| run: | | |
| yarn clean && yarn build |