Drop Node 22, support Node 26, update deps #289
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: Tests | |
| on: | |
| pull_request: | |
| jobs: | |
| changelog: | |
| if: ${{ github.base_ref == 'develop' || contains(github.base_ref, 'release-') }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v2 | |
| - run: pip install 'towncrier>=23.6.0' | |
| - run: scripts/check-newsfragment | |
| env: | |
| PULL_REQUEST_NUMBER: ${{ github.event.number }} |