You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ci.yml 388B

123456789101112131415161718192021222324
  1. name: ci
  2. on:
  3. push:
  4. pull_request:
  5. jobs:
  6. build:
  7. runs-on: ubuntu-latest
  8. strategy:
  9. matrix:
  10. node-version: [ '14', '16', '18' ]
  11. steps:
  12. - uses: actions/checkout@v2
  13. - name: Use Node.js ${{ matrix.node-version }}
  14. uses: actions/setup-node@v1
  15. with:
  16. node-version: ${{ matrix.node-version }}
  17. - run: npm install
  18. - run: npm test