Skip to content

Commit

Permalink
Add running the end to end test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed Jan 24, 2024
1 parent 098e310 commit d0094f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ jobs:
if: github.event.inputs.sdkTypescriptVersion != ''
run: npm --prefix typescript run verify --workspaces

- name: "Test typescript-end-to-end-testing example"
working-directory: ./typescript/end-to-end-testing
run: npm ci && npm run proto && npm run test

# Setup Java
- uses: actions/setup-java@v3
if: github.event.inputs.sdkJavaVersion != ''
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,7 @@ jobs:

- run: npm ci --prefix typescript
- run: npm run --prefix typescript -ws verify

- name: "Test typescript-end-to-end-testing example"
working-directory: ./typescript/end-to-end-testing
run: npm ci && npm run proto && npm run test

0 comments on commit d0094f8

Please sign in to comment.