Bump wtforms[email] from 3.1.2 to 3.2.1 #3112
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: "E2E" | |
on: [push, pull_request] | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.8'] | |
node-version: ['14'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install node_modules | |
run: npm install | |
- name: Install APT packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl | |
- name: Upgrade python tools | |
run: pip install --upgrade pip wheel setuptools | |
- name: Install python modules | |
run: pip install -e . | |
- name: Install CypressIO | |
run: cd e2e && npm install | |
- name: Build Client | |
run: cd e2e && npm run build | |
- name: Start Services | |
run: ./scripts/ci-start-services.sh | |
- name: E2E | |
working-directory: ./e2e | |
run: npm run cypress-ci | |
env: | |
CYPRESS_SCREENSHOTS_FOLDER: /tmp/cypress | |
- name: Upload screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: screenshots-e2e | |
path: /tmp/cypress/**/*.png |