Skip to content

Commit

Permalink
feat: end to end testing
Browse files Browse the repository at this point in the history
  • Loading branch information
clement2026 committed Sep 6, 2024
1 parent 6971b62 commit 6fbf82b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 44 deletions.
43 changes: 0 additions & 43 deletions .github/workflows/build-composite.yml

This file was deleted.

29 changes: 28 additions & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,34 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: ./.github/workflows/build-composite.yml
uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
cache-dependency-path: 'ts/package.json'

- name: Install ts dependencies
run: cd ts && pnpm install

- uses: actions/setup-go@v5
with:
go-version: '^1.23'
cache-dependency-path: "go.sum"

- name: Install Protoc
uses: arduino/setup-protoc@v3

- name: Build release binary
run: make release

- name: Test
run: make -f go.mk test-e2ef
Expand Down

0 comments on commit 6fbf82b

Please sign in to comment.