Skip to content

Commit

Permalink
24
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexErrant committed Nov 13, 2024
1 parent abaae93 commit d6a7188
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,6 @@ jobs:
envsubst < ./app/.example.env.production > ./app/.env.production
envsubst < ./app-playwright/.example.env > ./app-playwright/.env
- name: turbo
run: pnpm turbo:all --force $FORCE_TURBO_ALL
env:
FORCE_TURBO_ALL: ${{ inputs.forceTurboAll || 'false' }}
NODE_OPTIONS: '--max_old_space_size=8192' # https://github.com/actions/runner-images/issues/70

- name: curl1
if: always()
run: |
Expand All @@ -147,6 +141,12 @@ jobs:
curl https://app.pentive.localhost:3043/ | wc
done
- name: turbo
run: pnpm turbo:all --force $FORCE_TURBO_ALL
env:
FORCE_TURBO_ALL: ${{ inputs.forceTurboAll || 'false' }}
NODE_OPTIONS: '--max_old_space_size=8192' # https://github.com/actions/runner-images/issues/70

- name: Upload App Playwright report
uses: actions/upload-artifact@v4
if: always()
Expand Down
2 changes: 1 addition & 1 deletion app-playwright/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default defineConfig({
cwd: '../app',
url: env.VITE_APP_ORIGIN,
ignoreHTTPSErrors: true,
reuseExistingServer: !isCI,
reuseExistingServer: true,
},
// {
// command: 'pnpm previewTest',
Expand Down

0 comments on commit d6a7188

Please sign in to comment.