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