From ff6c362b16fe904e3c7603120725f550fe74c0b6 Mon Sep 17 00:00:00 2001 From: Eladio Feijoo Date: Tue, 29 Aug 2023 16:21:36 -0400 Subject: [PATCH] ci: :green_heart: Add build app --- .github/workflows/publish.yml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ec69565..e65b25e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,19 +36,22 @@ jobs: - name: format run: pnpm run fmt.check + - name: build + run: pnpm run build + # - name: Run unit test # run: pnpm run test - - name: Install Playwright Browsers - run: npx playwright install --with-deps - - name: Run Playwright tests - run: npx playwright test - - uses: actions/upload-artifact@v3 - if: always() - with: - name: playwright-report - path: playwright-report/ - retention-days: 30 + # - name: Install Playwright Browsers + # run: npx playwright install --with-deps + # - name: Run Playwright tests + # run: npx playwright test + # - uses: actions/upload-artifact@v3 + # if: always() + # with: + # name: playwright-report + # path: playwright-report/ + # retention-days: 30 # - name: Build App # run: pnpm run build