forked from streamlit/streamlit
-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (51 loc) · 1.53 KB
/
playwright-custom-components.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
name: Playwright E2E Tests - Custom Components
on:
push:
branches:
- "develop"
pull_request:
types: [opened, synchronize, reopened]
# Allows workflow to be called from other workflows
workflow_call:
inputs:
ref:
required: true
type: string
# Avoid duplicate workflows on same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-playwright-custom-component
cancel-in-progress: true
jobs:
playwright-e2e-tests-custom-components:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout Streamlit code
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
persist-credentials: false
submodules: "recursive"
fetch-depth: 2
- name: Set Python version vars
uses: ./.github/actions/build_info
- name: Set up Python ${{ env.PYTHON_MAX_VERSION }}
uses: actions/setup-python@v5
with:
python-version: "${{ env.PYTHON_MAX_VERSION }}"
- name: Setup virtual env
uses: ./.github/actions/make_init
- name: Install playwright
run: python -m playwright install --with-deps
- name: Run make frontend
run: make frontend
- name: Run make playwright-custom-components
run: make playwright-custom-components
- name: Upload failed test results
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright_test_results
path: e2e_playwright/test-results