Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/platform-docker-build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ jobs:
runs-on: [depot-ubuntu-latest-16, depot-ubuntu-latest-arm-16]
args:
- api-image: ${{ needs.docker-build-api.outputs.image }}
args: --meta-filter category=oss
args: --project=oss
- api-image: ${{ needs.docker-build-private-cloud-api.outputs.image }}
args: --meta-filter category=oss,category=enterprise
args: --project=oss --project=enterprise

# Publish to dockerhub

Expand Down Expand Up @@ -213,3 +213,9 @@ jobs:
{
"appVersion": "${{ steps.version-trim.outputs.version }}"
}

steps:
- name: Install Playwright browsers
run: npm run playwright:install
- name: Run tests
run: npm run test
4 changes: 2 additions & 2 deletions .github/workflows/platform-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
runs-on: ${{ matrix.runs-on }}
e2e-image: ${{ needs.docker-build-e2e.outputs.image }}
api-image: ${{ needs.docker-build-api.outputs.image }}
args: --meta-filter category=oss
args: --project=oss
secrets:
GCR_TOKEN: ${{ needs.permissions-check.outputs.can-write == 'true' && secrets.GITHUB_TOKEN || '' }}
SLACK_TOKEN: ${{ needs.permissions-check.outputs.can-write == 'true' && secrets.SLACK_TOKEN || '' }}
Expand All @@ -154,7 +154,7 @@ jobs:
runs-on: ${{ matrix.runs-on }}
e2e-image: ${{ needs.docker-build-e2e.outputs.image }}
api-image: ${{ needs.docker-build-private-cloud.outputs.image }}
args: --meta-filter category=enterprise
args: --project=enterprise
secrets:
GCR_TOKEN: ${{ needs.permissions-check.outputs.can-write == 'true' && secrets.GITHUB_TOKEN || '' }}
SLACK_TOKEN: ${{ needs.permissions-check.outputs.can-write == 'true' && secrets.SLACK_TOKEN || '' }}
Expand Down
23 changes: 0 additions & 23 deletions frontend/.testcaferc.js

This file was deleted.

3 changes: 3 additions & 0 deletions frontend/Dockerfile.e2e
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ COPY frontend .
COPY .release-please-manifest.json ./.versions.json
RUN npm run env

# Install Playwright browsers
RUN npm run playwright:install

ARG CI_COMMIT_SHA=dev
RUN echo ${CI_COMMIT_SHA} > ./CI_COMMIT_SHA

Expand Down
Loading
Loading