Fix/ingest archive query issue #1
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: test e2e | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
test: | |
name: run e2e tests | |
if: "!contains(github.event.head_commit.message, 'test skip')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: node common/scripts/install-run-rush.js install | |
- name: Build project | |
run: node common/scripts/install-run-rush.js build | |
- name: Run tests | |
run: test/e2e-suite/e2e.sh |