From 250f7b5955dab2b2e5640a553dcd19ae7f743e8d Mon Sep 17 00:00:00 2001 From: lassejaco Date: Sat, 4 Nov 2023 22:43:01 +0100 Subject: [PATCH] fix devcon ci --- .github/workflows/devcon.yml | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/.github/workflows/devcon.yml b/.github/workflows/devcon.yml index 876195540..881923f54 100644 --- a/.github/workflows/devcon.yml +++ b/.github/workflows/devcon.yml @@ -26,33 +26,8 @@ jobs: with: node-version: "16.x" - - name: Create env file - run: | - touch .env - echo DB_CONNECTION_STRING='${{ secrets.DB_CONNECTION_STRING }}' >> .env - echo ELASTIC_ENDPOINT='${{ secrets.ELASTIC_ENDPOINT }}' >> .env - - name: Install dependencies run: yarn - - name: Run Prettier // Format - run: yarn format - - name: Run Eslint // Lint run: yarn lint - - - name: Run Build - run: yarn build - - - name: Serve build to test against - run: yarn serve & - - - uses: microsoft/playwright-github-action@v1 - - - name: Run your tests - run: npm test - - - uses: actions/upload-artifact@v2 - with: - name: screenshots - path: screenshots