forked from opensumi/core
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (51 loc) · 1.34 KB
/
e2e.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
58
59
60
61
name: E2E Test
on:
push:
branches:
- main
workflow_dispatch:
pull_request:
branches:
- main
jobs:
build:
name: ubuntu-20.04, Node.js 14.x
runs-on: ubuntu-20.04
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js "14.x"
uses: actions/setup-node@v1
with:
node-version: "14.x"
registry-url: "https://registry.npmjs.org"
- name: Use Python 3.x
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Checkout opensumi/core
uses: actions/checkout@master
with:
repository: opensumi/core
path: ./opensumi
- name: Build
shell: bash
working-directory: ./opensumi
run: |
npm i
npm run download-extension
npm run init
- name: Run
shell: bash
working-directory: ./opensumi
run: SUPPORT_LOAD_WORKSPACE_BY_HASH=true npm start &
- uses: microsoft/playwright-github-action@v1
- name: Init & Test
run: npm i && npm run init && npm run test:ui-ci
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
with:
name: playwright-report
path: tools/playwright/test-results