diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index e263a25..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Build - -on: - push: - branches: - - main - pull_request: - -jobs: - build: - runs-on: ubuntu-latest - timeout-minutes: 15 - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - - - name: Install dependencies - run: npm ci - - - name: Build - run: npm run build diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 270c46b..b9eaeb4 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -25,6 +25,9 @@ jobs: - name: Install Playwright Browsers run: npx playwright install --with-deps + - name: Build plugin + run: npm run build + - name: Prepare Vite app run: npm run vite:prepare