node-tens.yml 468 B

123456789101112131415161718
  1. name: 'Tests: node.js >= 10'
  2. on: [pull_request, push]
  3. jobs:
  4. tests:
  5. uses: ljharb/actions/.github/workflows/node.yml@main
  6. with:
  7. range: '>= 10'
  8. type: minors
  9. command: NODE_OPTIONS=--unhandled-rejections=none node -pe '' 2>/dev/null && NODE_OPTIONS=--unhandled-rejections=none npm run tests-only || npm run tests-only
  10. node:
  11. name: 'node >= 10'
  12. needs: [tests]
  13. runs-on: ubuntu-latest
  14. steps:
  15. - run: 'echo tests completed'