v2.0.48+ext #1942
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |