Configure workflow to run e2e on dev-azure on demand #834
Workflow file for this run
This file contains 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: Build | |
on: | |
pull_request: | |
jobs: | |
build-pr: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: build-a-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- name: Run build | |
uses: ./.github/actions/build_package | |
- name: Run tests | |
run: yarn test:unit | |
- name: Ensure working directory is clean | |
uses: CatChen/check-git-status-action@v1 | |
with: | |
fail-if-not-clean: true | |
request-changes-if-not-clean: false |