-
Notifications
You must be signed in to change notification settings - Fork 1.8k
34 lines (33 loc) · 1.13 KB
/
examplePageTest.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
name: detect runtime error
on:
schedule:
- cron: '0 22 * * *'
jobs:
makeUrl:
runs-on: ubuntu-latest
env:
WORKING_DIRECTORY: ./apps/editor
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: create config variable
working-directory: ${{ env.WORKING_DIRECTORY }}
run: |
node scripts/createConfigVariable.js
- name: set global error variable
working-directory: ${{ env.WORKING_DIRECTORY }}
run: |
echo ::set-env name=ERROR_VARIABLE::$(head -n 1 ./errorVariable.txt)
- name: set url
working-directory: ${{ env.WORKING_DIRECTORY }}
run: |
echo ::set-env name=URLS::$(head -n 1 ./url.txt)
- name: detect runtime error
uses: nhn/toast-ui.detect-runtime-error-actions@master
with:
global-error-log-variable: ${{ env.ERROR_VARIABLE }}
urls: ${{ env.URLS }}
browserlist: ie11, safari, edge, firefox, chrome
env:
BROWSERSTACK_USERNAME: ${{secrets.BROWSERSTACK_USERNAME}}
BROWSERSTACK_ACCESS_KEY: ${{secrets.BROWSERSTACK_ACCESS_KEY}}