-
Notifications
You must be signed in to change notification settings - Fork 5
73 lines (72 loc) · 2.07 KB
/
e2e_admin.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Admin console tests
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
schedule:
- cron: '0 */3 * * *'
env:
ENV: test
ADMIN_PANEL_URL: ${{ secrets.ADMIN_PANEL_URL }}
BLOCKSCOUT_URL: ${{ secrets.E2E_BLOCKSCOUT_URL }}
ADMIN_ACCOUNT_USERNAME: ${{ secrets.ADMIN_ACCOUNT_USERNAME }}
ADMIN_ACCOUNT_PASSWORD: ${{ secrets.ADMIN_ACCOUNT_PASSWORD }}
jobs:
test:
name: Admin console tests
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: v14.17.0
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install deps
run: npm ci
- name: Build contracts
working-directory: ./tests/contracts
run: |
# gyp build from root
npm config set user 0
npm ci
npm run build
- name: Cache playwright binaries
uses: actions/cache@v2
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-build-${{ env.cache-name }}
restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run playwright
run: |
npm run test:admin
- uses: actions/upload-artifact@v3
if: always()
with:
name: report
path: tests/e2e/html-report/index.html
- uses: actions/upload-artifact@v3
if: always()
with:
name: tests-results
path: tests/e2e/test-results
defaults:
run:
shell: bash
working-directory: ./tests/e2e