add qrms required by tests to project #240
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: Run all test of the Quantum Workflow Modeler | |
on: | |
pull_request: | |
types: [ opened, synchronize ] | |
push: | |
branches: | |
- 'master' | |
jobs: | |
run-test: | |
runs-on: ubuntu-latest | |
services: | |
workflow-test-engine: | |
image: planqk/workflow-engine-test:latest | |
ports: | |
- 8090:8090 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: run tests | |
run: | | |
npm ci | |
npm run build | |
npm test | |
working-directory: ./components/bpmn-q |