fix(cli): #1713 decode url-encoded dynamic route params for get static paths #2421
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: [22] | |
| 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 |