diff --git a/.devcontainer/boot.sh b/.devcontainer/boot.sh index 8f30c9df..77712a03 100644 --- a/.devcontainer/boot.sh +++ b/.devcontainer/boot.sh @@ -34,7 +34,6 @@ cd $CURRENT_DIR echo "Installing and linking dependencies..." yarn -yarn lerna bootstrap echo "Migrating database..." cd packages/backend diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f200e74e..bde60a94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: cache-dependency-path: yarn.lock - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - run: yarn --frozen-lockfile && yarn lerna bootstrap + - run: yarn --frozen-lockfile - run: cd packages/backend && yarn start env: ENCRYPTION_KEY: sample_encryption_key @@ -58,7 +58,7 @@ jobs: cache-dependency-path: yarn.lock - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - run: yarn --frozen-lockfile && yarn lerna bootstrap + - run: yarn --frozen-lockfile - run: cd packages/backend && yarn start:worker env: ENCRYPTION_KEY: sample_encryption_key @@ -78,7 +78,7 @@ jobs: cache-dependency-path: yarn.lock - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - run: yarn --frozen-lockfile && yarn lerna bootstrap + - run: yarn --frozen-lockfile - run: cd packages/web && yarn build env: CI: false diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 7a1e9a69..4a392753 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -59,7 +59,7 @@ jobs: with: node-version: 18 - name: Install dependencies - run: yarn && yarn lerna bootstrap + run: yarn - name: Install Playwright Browsers run: yarn playwright install --with-deps - name: Build Automatisch web