CI.yml 802 B

12345678910111213141516171819202122232425262728293031
  1. # GitHub Actions docs
  2. # https://help.github.com/en/articles/about-github-actions
  3. # https://help.github.com/en/articles/workflow-syntax-for-github-actions
  4. name: Install Dependencies, Lint, Build and Test
  5. on: [push]
  6. jobs:
  7. test:
  8. name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
  9. runs-on: ${{ matrix.os }}
  10. strategy:
  11. matrix:
  12. node_version: [18]
  13. os: [windows-latest, macOS-latest]
  14. steps:
  15. - uses: actions/checkout@v3
  16. - name: Use Node.js ${{ matrix.node_version }}
  17. uses: actions/setup-node@v3
  18. with:
  19. node-version: ${{ matrix.node_version }}
  20. - name: Install Dependencies
  21. run: npm ci
  22. - name: Lint
  23. run: npm run lint
  24. - name: Build
  25. run: npm run build -- --prod
  26. - name: Test
  27. run: npm test