test.yml 354 B

1234567891011121314151617181920
  1. name: Tests
  2. on:
  3. pull_request:
  4. push:
  5. branches: master
  6. jobs:
  7. test:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v2
  11. - name: Setup Node.js 18.x
  12. uses: actions/setup-node@v2
  13. with:
  14. node-version: 18.x
  15. - name: Install and test
  16. run: |
  17. yarn install
  18. yarn test:app