From 5109b3150384b6b3db63d105e0b7f3849a8fa605 Mon Sep 17 00:00:00 2001 From: Brendan O'Handley Date: Thu, 7 Mar 2024 16:22:42 -0600 Subject: [PATCH] simplify workflow for only testing e2e tests --- .github/workflows/e2e.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index ee25ddc6..2a162193 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -14,35 +14,6 @@ jobs: timeout-minutes: 60 runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Go environment - uses: actions/setup-go@v4 - with: - go-version: '1.21.6' - # tests failing so don't test backend until we get the library working - # - name: Test backend - # uses: magefile/mage-action@v2 - # with: - # version: latest - # args: coverage - - name: Build backend - uses: magefile/mage-action@v2 - with: - version: latest - args: buildAll - - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version: 20 - - name: Install dependencies - run: npm install -g yarn && yarn install --frozen-lockfile; - - name: Spellcheck - run: | - yarn spellcheck; - - name: Build Frontend - run: | - yarn build; - name: Start the docker container for E2E run: | docker-compose pull