Skip to content

Commit

Permalink
Please
Browse files Browse the repository at this point in the history
  • Loading branch information
zomars committed Feb 27, 2023
1 parent d27f36f commit d8be331
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
jobs:
e2e:
timeout-minutes: 20
name: E2E tests
runs-on: ubuntu-latest
services:
postgres:
Expand All @@ -22,8 +23,9 @@ jobs:
- uses: ./.github/actions/cache-db
- uses: ./.github/actions/env-read-file
- uses: ./.github/actions/cache-build
- run: yarn e2e
- name: Upload test results
- name: Run Tests
run: yarn test-e2e
- name: Upload Test Results
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ jobs:

build:
name: Production build
needs: setup
needs: [setup, env]
uses: ./.github/workflows/production-build.yml
secrets: inherit

e2e:
name: E2E tests
needs: [lint, build]
needs: [changes, lint, build]
uses: ./.github/workflows/e2e.yml
secrets: inherit

Expand Down

0 comments on commit d8be331

Please sign in to comment.