Skip to content

Commit

Permalink
chore: split ci into test and release (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
kettanaito authored Oct 21, 2024
1 parent bbc8e3a commit aa92f08
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 19 deletions.
21 changes: 2 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,40 +7,23 @@ on:
workflow_dispatch:

jobs:
build:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GH_ADMIN_TOKEN }}

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
always-auth: true
registry-url: https://registry.npmjs.org

- uses: pnpm/action-setup@v2
with:
version: 7.12

- name: Setup Git
run: |
git config --local user.name "Artem Zakharchenko"
git config --local user.email "[email protected]"
version: 8.15.6

- name: Install dependencies
run: pnpm install

- name: Test
run: pnpm test

- name: Release
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GH_ADMIN_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
44 changes: 44 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: release

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GH_ADMIN_TOKEN }}

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
always-auth: true
registry-url: https://registry.npmjs.org

- uses: pnpm/action-setup@v2
with:
version: 8.15.6

- name: Setup Git
run: |
git config --local user.name "Artem Zakharchenko"
git config --local user.email "[email protected]"
- name: Install dependencies
run: pnpm install

- name: Test
run: pnpm test

- name: Release
run: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GH_ADMIN_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit aa92f08

Please sign in to comment.