chore(deps): update dependency @types/node to v22.10.0 #112
This file contains 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: Pull Request Open | |
on: | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
# PR open and close use the same group, allowing only one at a time | |
group: ${{ github.event.number }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
test: | |
name: Action Test | |
if: github.event_name != 'pull_request' || !github.event.pull_request.draft | |
uses: ./.github/workflows/reusable-tests.yml | |
results: | |
name: Analysis Results | |
needs: [test] | |
runs-on: ubuntu-24.04 | |
steps: | |
- run: echo "Workflow completed successfully!" |