run the pipeline like in dev

This commit is contained in:
Elio Bischof
2025-07-24 15:20:56 +02:00
parent dbe2c7aa48
commit f43ffa2010
2 changed files with 7 additions and 13 deletions

View File

@@ -57,6 +57,7 @@ jobs:
name: Install pnpm name: Install pnpm
with: with:
version: 9.1.2+sha256.19c17528f9ca20bd442e4ca42f00f1b9808a9cb419383cd04ba32ef19322aba7 version: 9.1.2+sha256.19c17528f9ca20bd442e4ca42f00f1b9808a9cb419383cd04ba32ef19322aba7
# The devcontainer runs install after we set up caching in the following step # The devcontainer runs install after we set up caching in the following step
run_install: false run_install: false
- name: Set up pnpm caching - name: Set up pnpm caching
@@ -64,12 +65,10 @@ jobs:
with: with:
# We don't care about the node version or anything else, we just want to set up pnpm caching # We don't care about the node version or anything else, we just want to set up pnpm caching
cache: 'pnpm' cache: 'pnpm'
- name: Install Dev Container CLI
run: pnpm install -g @devcontainers/cli@0.3.0
- name: Lint and Unit Test All JavaScript Code - name: Lint and Unit Test All JavaScript Code
uses: devcontainers/ci@v0.3 run: pnpm devcontainer:lint-unit
with:
push: never
configFile: .devcontainer/turbo-lint-unit/devcontainer.json
runCmd: echo "Successfully ran postStartCommand"
core: core:
name: core name: core

View File

@@ -26,12 +26,7 @@ jobs:
with: with:
# We don't care about the node version or anything else, we just want to set up pnpm caching # We don't care about the node version or anything else, we just want to set up pnpm caching
cache: 'pnpm' cache: 'pnpm'
- name: Install Dev Container CLI
run: pnpm install -g @devcontainers/cli@0.3.0
- name: Run Integration Tests against the Login and a Mocked Zitadel API - name: Run Integration Tests against the Login and a Mocked Zitadel API
uses: devcontainers/ci@v0.3 run: pnpm devcontainer:integration:login
environment:
LOGIN_TAG: ${{ inputs.login_build_image }}
with:
push: never
configFile: .devcontainer/login-integration/devcontainer.json
runCmd: echo "Successfully ran postStartCommand"