-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (49 loc) · 1.33 KB
/
artillery.yaml
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
58
59
name: Artillery Load Test
on:
push:
branches:
- main
paths:
- 'src/artillery.js'
workflow_dispatch:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- warning
jobs:
artillery:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: |
npm install
npm install @playwright/test
npx playwright install
#- name: Install dependencies
# run: |
# npm i -D @playwright/test
# npm i -D @playwright/browser-chromium
# npx playwright install
- name: Make reports directory
run: mkdir reports
- name: Execute load tests
uses: artilleryio/action-cli@v1
with:
command: run src/artillery.yml --output reports/report-artillery.json
#working-directory: ./src
- name: Generate HTML report
run: run report --output reports/report.html reports/report.json
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: artillery-report
path: reports/*