DEV-3545: secure cookie flag #3
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: Playwright E2E Tests | |
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 | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest-4-cores | |
defaults: | |
run: | |
shell: bash --login -eo pipefail {0} | |
steps: | |
- name: Checkout Streamlit code | |
uses: actions/checkout@v3 | |
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@v4 | |
with: | |
python-version: "${{ env.PYTHON_MAX_VERSION }}" | |
- name: Setup virtual env | |
uses: ./.github/actions/make_init | |
- name: Run make develop | |
run: make develop | |
- name: Run make protobuf | |
run: make protobuf | |
- name: Run make frontend | |
run: make frontend-fast | |
- name: Run make playwright | |
run: make playwright | |
- name: Check that all screenshot have been committed | |
run: | | |
set -x; | |
UNTRACKED_FILE_COUNT=$(git ls-files --others --exclude-standard | grep snapshots | wc -l | bc -l || echo '0') | |
echo "Untracked files count: ${UNTRACKED_FILE_COUNT}" | |
if [[ "${UNTRACKED_FILE_COUNT}" -gt 0 ]]; then | |
echo "Untracked files:"; | |
git ls-files --others --exclude-standard | grep snapshots; | |
exit 1; | |
fi | |
- name: Upload snapshots | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright_snapshots | |
path: e2e/playwright/snapshots | |
- name: Upload failed test results | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright_test_results | |
path: e2e/playwright/test-results |