To counter introducing regressions in future via pull requests I recommend to modify test running script nodejs.yml to include trigger that runs tests against pull requests when they are introduced.
name: Node CI
on: [push]
jobs:
@@@rest of the script@@@
name: Node CI
on:
push:
pull_request:
jobs:
@@@rest of the script@@@