Skip to content

Commit

Permalink
perf: ♻️ CI flows
Browse files Browse the repository at this point in the history
  • Loading branch information
viarotel committed Oct 17, 2024
1 parent 239eb89 commit a32d10f
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,31 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: checkout
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: setup Node.js
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: enable corepack and pnpm
- name: Enable corepack and pnpm
run: |
corepack enable
corepack prepare pnpm@latest --activate
- name: install dependencies and build
- name: Install dependencies and build
run: |
pnpm install
pnpm build
- name: release
- name: Fetch latest tags
run: |
git fetch --tags
- name: Release
uses: softprops/action-gh-release@v2
with:
draft: false
Expand Down

0 comments on commit a32d10f

Please sign in to comment.