-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 904 Bytes
/
example.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
on:
pull_request:
branches:
- master
- main
push:
branches:
- master
- main
paths-ignore:
- "psi-reports/**"
- "dist/**"
jobs:
psi_web_perf_action:
runs-on: ubuntu-latest
name: Example job
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v3
- name: Running PSI
uses: ./ # Uses an action in the root directory
id: psi_job
with:
api_key: ${{ secrets.PSI_API_KEY }}
urls: |
https://mazipan.space/
https://mazipan.space/cerita-anak-kampung-menjadi-programmer
devices: |
mobile
desktop
runs: 3
max: 5
branch: master
push_back: true
override: true
token: ${{ secrets.GITHUB_TOKEN }}