mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-09 11:28:14 +08:00
72 lines
1.9 KiB
YAML
72 lines
1.9 KiB
YAML
name: e2e-standalone-tests
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.github/workflows/e2e-standalone-tests.yml'
|
|
- 'tslib/**.ts'
|
|
- 'tslib/**.tsx'
|
|
- 'tslib/**/package.json'
|
|
- 'tslib/**/package-lock.json'
|
|
- 'standalone_app/**.ts'
|
|
- 'standalone_app/**.tsx'
|
|
- 'standalone_app/package.json'
|
|
- 'standalone_app/package-lock.json'
|
|
- 'standalone_app/tsconfig.json'
|
|
- 'standalone_app/vite.config.js'
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
optuna-version: ['optuna']
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Rust toolchains
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
- name: Install wasm-pack
|
|
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '18'
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.11'
|
|
architecture: x64
|
|
|
|
- name: Setup Optuna ${{ matrix.optuna-version }}
|
|
run: |
|
|
python -m pip install --progress-bar off --upgrade pip setuptools
|
|
python -m pip install --progress-bar off --upgrade ${{ matrix.optuna-version }}
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --progress-bar off .
|
|
python -m pip install --progress-bar off pytest-playwright==0.4.3 # next version is flaky
|
|
|
|
- name: Build rustlib
|
|
working-directory: rustlib
|
|
run: wasm-pack build --target web
|
|
|
|
- name: Build tslib
|
|
run: make tslib
|
|
|
|
- name: Build standalone_app
|
|
working-directory: standalone_app
|
|
run: |
|
|
npm install
|
|
npx vite build --outDir dist
|
|
|
|
- name: Install the required browsers
|
|
run: playwright install
|
|
|
|
- name: Run e2e tests
|
|
run: pytest e2e_tests/test_standalone
|