Update dependencies #7583
Workflow file for this run
This file contains hidden or 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: Run integration tests | |
| on: | |
| pull_request: | |
| jobs: | |
| run_integration_tests: | |
| name: Run ui's integration tests against Docker Compose environment | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24.x' | |
| cache: 'yarn' | |
| - name: Install dependencies && check that lockfile is up-to-date | |
| run: yarn --frozen-lockfile | |
| - name: start e2e env | |
| uses: HSLdevcom/jore4-tools/github-actions/setup-e2e-environment@setup-e2e-environment-v10 | |
| - name: Build test db manager module | |
| run: yarn ws:db build | |
| - name: Run integration tests | |
| env: | |
| HASURA_URL: 'https://e2e.local.jore.hsldev.com/api/graphql/v1/graphql' | |
| run: yarn test:integration |