Update Node.js to v22 #349
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
on: | |
pull_request: | |
types: | |
- labeled | |
- unlabeled | |
- synchronize | |
jobs: | |
check-for-new: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check if labelled as "new" | |
run: | | |
if [ "${{ contains(github.event.pull_request.labels.*.name, 'new') }}" = true ]; then | |
echo "::error::This PR is still too new to merge" | |
exit 1 | |
fi |