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 344B

12345678910111213141516
  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 Packages
  13. run: yarn build:packages
  14. # run unit tests
  15. - name: Jest Annotations & Coverage
  16. run: yarn test:ci