Skip to content

Commit

Permalink
ci: 💚 separate test ci of publish ci
Browse files Browse the repository at this point in the history
  • Loading branch information
diecodev committed May 8, 2024
1 parent 57fc2c7 commit 5f5e2fa
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 33 deletions.
34 changes: 1 addition & 33 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
39 changes: 39 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5f5e2fa

Please sign in to comment.