Handling opting in/out the PC module, Reverting demo app to default s… #296
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: Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches-ignore: | |
| - 'releases/**' | |
| - 'master' | |
| workflow_call: | |
| jobs: | |
| Run-unit-tests: | |
| if: ${{ startsWith(github.head_ref, 'releases/') == false }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install modules | |
| run: npm install | |
| - name: Run jest tests | |
| run: npm run test |