chore(ci): Update large file test to use platform #179
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: Large file test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- feature/large-okish | |
schedule: | |
- cron: '0 4 * * 2,4' | |
jobs: | |
large-file-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
cache-dependency-path: './web-app/package-lock.json' | |
- run: make all && make test | |
- name: run platform | |
uses: opentdf/platform/test/start-up-with-containers@main | |
- run: docker compose up -d --wait --wait-timeout 240 | |
working-directory: .github/workflows/roundtrip | |
- env: | |
PLAYWRIGHT_TESTS_TO_RUN: huge roundtrip | |
run: |- | |
./wait-and-test.sh platform | |
working-directory: .github/workflows/roundtrip |