pack and install: "before all" hook: should be able to use the d.ts for "should be able to webpack the library" failed #607
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: invalid_link | |
| on: | |
| issues: | |
| types: [opened, reopened] | |
| jobs: | |
| close: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 18 | |
| - run: npm install | |
| working-directory: ./.github/scripts | |
| - uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| const script = require('./.github/scripts/close-invalid-link.cjs') | |
| await script({github, context}) |