Skip to content

Commit 88ccff8

Browse files
committed
remove tests step from action
1 parent 42d9ace commit 88ccff8

File tree

5 files changed

+7
-23
lines changed

5 files changed

+7
-23
lines changed

.github/actions/publish-self-hostable-docs/action.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,6 @@ runs:
1010
using: composite
1111
steps:
1212

13-
- name: Run self-hosted tests
14-
uses: ./.github/actions/run-self-hosted-tests
15-
env:
16-
FERN_TOKEN: ${{ env.FERN_TOKEN }}
17-
WORKOS_API_KEY: ${{ env.WORKOS_API_KEY }}
18-
WORKOS_CLIENT_ID: ${{ env.WORKOS_CLIENT_ID }}
19-
2013
- name: Check for Environment Variables
2114
id: check_env
2215
shell: bash

.github/actions/run-self-hosted-tests/action.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/publish-self-hostable-docs-cron.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ jobs:
3636
set -e
3737
pnpm docs:self-hosted-bundle:build
3838
39+
- name: Run self-hosted tests
40+
run: pnpm turbo build test:self-hosted --filter=@fern-platform/self-hosted
41+
3942
- name: Get latest tag
4043
id: get_latest_tag
4144
uses: ./.github/actions/get-latest-docker-tag

.github/workflows/publish-self-hostable-docs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ jobs:
3636
set -e
3737
pnpm docs:self-hosted-bundle:build
3838
39+
- name: Run self-hosted tests
40+
run: pnpm turbo build test:self-hosted --filter=@fern-platform/self-hosted
41+
3942
- name: Publish Self-Hostable Docs
4043
uses: ./.github/actions/publish-self-hostable-docs
4144
with:

.github/workflows/run-self-hosted-tests.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,4 @@ jobs:
3737
pnpm docs:self-hosted-bundle:build
3838
3939
- name: Run self-hosted tests
40-
uses: ./.github/actions/run-self-hosted-tests
41-
env:
42-
FERN_TOKEN: ${{ secrets.FERN_TOKEN }}
43-
WORKOS_API_KEY: ${{ secrets.WORKOS_API_KEY }}
44-
WORKOS_CLIENT_ID: ${{ secrets.WORKOS_CLIENT_ID }}
40+
run: pnpm turbo build test:self-hosted --filter=@fern-platform/self-hosted

0 commit comments

Comments
 (0)