Skip to content

Commit

Permalink
Add build step for e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
obany committed Dec 1, 2023
1 parent 6d5df2f commit 1545375
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automation-testing-full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ concurrency:
cancel-in-progress: true

jobs:
build:
e2e:
runs-on: windows-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automation-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ concurrency:
cancel-in-progress: true

jobs:
build:
e2e:
runs-on: windows-latest

steps:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
push:

jobs:
build:
e2e:
runs-on: windows-latest

steps:
Expand Down Expand Up @@ -33,4 +33,6 @@ jobs:

- name: Run Workspace Platform Starter E2E Tests
working-directory: ./how-to/workspace-platform-starter
run: npm run start && npm run e2e
run: |
npm run build
npm run start & npm run e2e

0 comments on commit 1545375

Please sign in to comment.