Skip to content

remove start-back from workflow #232

remove start-back from workflow

remove start-back from workflow #232

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Unit tests
on:
workflow_dispatch:
push:
branches:
- 'develop'
- 'main'
- 'feature/**'
- 'bugfix/**'
- 'hotfix/**'
- 'release/**'
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.12']
node-version: ['22.x']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Run all tests
run: |
yarn preinstall
yarn install-data
yarn fyarn
yarn
yarn static-p
find static
chromedriver --version
yarn test