From b0f0fa9fd56d763f6e329af29e974e0b7bc98b43 Mon Sep 17 00:00:00 2001 From: Ethen Pociask Date: Thu, 6 Jun 2024 16:14:09 -0400 Subject: [PATCH] feat: Add E2E test to CI --- .github/workflows/actions.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 20ab9ee7..055fcd92 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -53,3 +53,22 @@ jobs: uses: securego/gosec@master with: args: ./... + + e2e-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.21 + + - name: Install project dependencies + run: | + go mod download + - name: Run E2E Tests + env: + SIGNER_PRIVATE_KEY: ${{ secrets.SIGNER_PRIVATE_KEY }} + run: | + SIGNER_PRIVATE_KEY=$SIGNER_PRIVATE_KEY make e2e-test \ No newline at end of file