Move to Github action release workflows #272
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Setup node and yarn | |
| uses: actions/setup-node@v3 | |
| with: | |
| cache: npm | |
| - name: NPM install | |
| run: npm ci | |
| shell: bash | |
| - run: npm test | |