From 5f5e2fa46d333961667dfd23423494fe407bcedc Mon Sep 17 00:00:00 2001 From: diecodev Date: Wed, 8 May 2024 10:57:31 -0500 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=92=9A=20separate=20test=20ci=20of?= =?UTF-8?q?=20publish=20ci?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 34 +----------------------------- .github/workflows/test.yml | 39 +++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 33 deletions(-) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4810161..be6ee8f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,43 +5,11 @@ permissions: on: push: - branches: main tags: - "v*" - pull_request: - branches: main jobs: - playwright_test: - timeout-minutes: 60 - runs-on: ubuntu-latest - steps: - - name: clone repo - uses: actions/checkout@v4 - - - name: Install pnpm - uses: pnpm/action-setup@v3 - with: - version: 9 - - - name: Use Node.js 20 - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: "pnpm" - - - name: Install dependencies - run: pnpm install --no-frozen-lockfile - - run: pnpm build - - - name: Install Playwright Browsers - run: npx playwright install --with-deps - - - name: Run Playwright tests - run: pnpm test || exit 1 - npm_publish: - needs: playwright_test runs-on: ubuntu-latest steps: - name: clone repository @@ -69,7 +37,7 @@ jobs: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} gh_release: - needs: [npm_publish, playwright_test] + needs: [npm_publish] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..55377a2 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,39 @@ +name: Release + +permissions: + contents: write + +on: + push: + branches: main + pull_request: + branches: main + +jobs: + playwright_test: + timeout-minutes: 60 + runs-on: ubuntu-latest + steps: + - name: clone repo + uses: actions/checkout@v4 + + - name: Install pnpm + uses: pnpm/action-setup@v3 + with: + version: 9 + + - name: Use Node.js 20 + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: "pnpm" + + - name: Install dependencies + run: pnpm install --no-frozen-lockfile + - run: pnpm build + + - name: Install Playwright Browsers + run: npx playwright install --with-deps + + - name: Run Playwright tests + run: pnpm test || exit 1