steps.yml 373 B

123456789101112131415161718192021
  1. name: CI
  2. on:
  3. pull_request_target:
  4. push:
  5. branches:
  6. - master
  7. jobs:
  8. ci:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v2
  12. - run: npm ci
  13. - run: npm run test:ci
  14. env:
  15. BROWSER_STACK_USERNAME: ${{ secrets.BROWSER_STACK_USERNAME }}
  16. BROWSER_STACK_ACCESS_KEY: ${{ secrets. BROWSER_STACK_ACCESS_KEY }}