Skip to content

benchmarks

benchmarks #7

Workflow file for this run

name: benchmarks
on:
# Runs on pushes targeting the default branch
push:
branches: ['master']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: write
# Allow one concurrent deployment
concurrency:
group: 'benchmark'
cancel-in-progress: true
jobs:
benchmark:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Download data for benchmarks
run: |
mkdir e2e/data
cd e2e/data
curl -LO https://github.com/niemasd/ViralConsensus-Paper/raw/main/data/time_memory_benchmark/reads.fastq.gz
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Build site for Playwright
env:
VITE_OFFLINE_VERSION: true
run: npm run build
- name: Get installed Playwright version
id: playwright-version
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package.json').devDependencies['@playwright/test'])")" >> $GITHUB_ENV
- name: Cache Playwright binaries
uses: actions/cache@v3
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
- run: npx playwright install --with-deps
if: steps.playwright-cache.outputs.cache-hit != 'true'
- run: npx playwright install-deps
if: steps.playwright-cache.outputs.cache-hit == 'true'
- name: Run Playwright benchmark tests
run: npx playwright test site-benchmarks.spec.ts
- uses: actions/upload-artifact@v3
with:
name: benchmarks
path: benchmarks/