Merge pull request #1025 from ibi-group/faresv2 #1208
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: Commit Checks | |
| on: [push] | |
| jobs: | |
| push-checks: | |
| uses: ./.github/workflows/node-ci.yml | |
| with: | |
| # Run e2e tests on pushes to dev and master. | |
| e2e: ${{ github.ref_name == 'dev' || github.ref_name == 'master' }} | |
| secrets: inherit |