build.yml 459 B

123456789101112131415161718192021222324
  1. name: Build & Test
  2. on:
  3. push:
  4. branches: [ master ]
  5. pull_request:
  6. branches: [ master ]
  7. jobs:
  8. build:
  9. runs-on: ubuntu-latest
  10. strategy:
  11. matrix:
  12. node-version: [16.x, 18.x, 20.x]
  13. steps:
  14. - uses: actions/checkout@v3
  15. - name: Use Node.js ${{ matrix.node-version }}
  16. uses: actions/setup-node@v3
  17. with:
  18. node-version: ${{ matrix.node-version }}
  19. - run: yarn install
  20. - run: yarn test