[vitest-pool-workers] module fallback path resolution #353
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: Auto-assign Issues | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| assign-issue: | |
| runs-on: ubuntu-slim | |
| permissions: | |
| issues: write | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 # need this version for `Set` methods | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.12.0 | |
| - name: Install Dependencies | |
| run: pnpm i -F tools --frozen-lockfile | |
| - name: Auto-assign issue | |
| run: node -r esbuild-register tools/github-workflow-helpers/auto-assign-issues.ts | |
| env: | |
| INPUT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |