25 lines
485 B
YAML
25 lines
485 B
YAML
name: Heavy tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: heavy-tests-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
fig-roundtrip:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: ./.github/actions/setup-bun
|
|
with:
|
|
lfs: 'true'
|
|
|
|
- name: Heavy fig roundtrip tests
|
|
run: bun test --timeout 180000 tests/engine/fig-roundtrip.test.ts
|
|
env:
|
|
BUN_HEAVY_TESTS: 'true'
|