forked from tot-ra/graphql-schema-registry
-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (46 loc) · 1.19 KB
/
perf-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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: 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 20 seconds until everything is up
run: sleep 20s
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