Skip to content

chore: bump @mui/joy from 5.0.0-beta.10 to 5.0.0-beta.11 #10230

chore: bump @mui/joy from 5.0.0-beta.10 to 5.0.0-beta.11

chore: bump @mui/joy from 5.0.0-beta.10 to 5.0.0-beta.11 #10230

name: "Integration test"
on:
pull_request:
branches: [main]
jobs:
integration:
name: Integration test
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "yarn"
cache-dependency-path: core/api/yarn.lock
- run: cd core/api && yarn install --frozen-lockfile
- name: Run integration tests
run: |
cd core/api/
make integration-in-ci
container_id=$(docker ps -q -f status=exited -f name="${PWD##*/}-integration-tests-")
exit $(docker inspect $container_id --format='{{.State.ExitCode}}')