node-aught.yml 334 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: 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'