-
Notifications
You must be signed in to change notification settings - Fork 11
56 lines (56 loc) · 1.32 KB
/
extension-test.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
name: extension - test
on:
push:
branches:
- main
- develop
paths:
- 'apps/extension/**'
pull_request:
branches:
- main
- develop
paths:
- 'apps/extension/**'
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
env:
NODE_OPTIONS: "--max_old_space_size=4096"
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
steps:
- name: Copy Files
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.5.0
- name: Print Node version
run: node -v
- name: Print yarn version
run: yarn -v
- name: Design system install dependencies
run: |-
cd packages/design
yarn
- name: Design system build
run: |-
cd packages/design
yarn build
- name: Install dependencies
run: |-
cd apps/extension
yarn
- name: Run build
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: |-
cd apps/extension
yarn build
- name: Install Playwright Browsers
run: npx playwright install-deps chromium
- name: Run Playwright tests
run: |-
cd apps/extension
xvfb-run --auto-servernum -- yarn test