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.

main.yml 491B

1234567891011121314151617181920
  1. name: CI
  2. on: push
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v2
  8. # install modules
  9. - name: Install modules
  10. run: yarn
  11. # build
  12. - name: Build
  13. run: yarn build:packages
  14. # run unit tests
  15. - name: Jest Annotations & Coverage
  16. uses: mattallty/jest-github-action@v1.0.3
  17. env:
  18. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  19. with:
  20. test-command: 'yarn test --ci --runInBand'