fix github workflows #177
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: Performance Tests | |
on: | |
push: | |
branches: | |
- master | |
- features/** | |
- dependabot/** | |
pull_request: | |
branches: | |
- master | |
permissions: | |
contents: read | |
actions: read | |
checks: write | |
pull-requests: read | |
statuses: write | |
deployments: none | |
issues: none | |
packages: none | |
repository-projects: none | |
security-events: none | |
jobs: | |
docker: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Read .nvmrc | |
run: echo ::set-output name=NVMRC::$(cat .nvmrc) | |
id: nvm | |
- name: Install node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '${{ steps.nvm.outputs.NVMRC }}' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Start service + stub services | |
run: docker compose -f "docker-compose.perf-tests.yml" up -d --build | |
- name: Sleep for 30 seconds until everything is up | |
run: sleep 30s | |
shell: bash | |
- run: docker compose -f docker-compose.perf-tests.yml run --rm k6 run /scripts/schema-latest.test.js | |
- name: Stop containers | |
if: always() | |
run: docker compose -f "docker-compose.perf-tests.yml" down |