fix(commonjs): fix error when bundle contains require() of module with falsy __esModule export
#4063
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: Windows | |
| on: | |
| pull_request: | |
| types: | |
| - edited | |
| - opened | |
| - synchronize | |
| push: | |
| branches: | |
| - '*' | |
| - '!master' | |
| jobs: | |
| build: | |
| runs-on: windows-2019 | |
| strategy: | |
| matrix: | |
| node: ['20', '18'] | |
| name: Node v${{ matrix.node }} | |
| steps: | |
| - name: Configure git line-breaks | |
| run: git config --global core.autocrlf false | |
| - name: Checkout Commit | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Update Master | |
| run: git pull --force --no-tags origin master:master | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install PNPM | |
| uses: pnpm/action-setup@v4 | |
| - name: pnpm install | |
| run: pnpm install --ignore-scripts | |
| - name: run tests | |
| run: pnpm --workspace-concurrency 1 --filter "...[origin/master]" ci:test |