Skip to content

Feature/changesets #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 19, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ci(release.yml): update Node.js setup to version 20.16.0 and improve …
…pnpm setup

Switch Node.js setup to version 20.16.0 for compatibility with the latest features. Update pnpm setup to use version 10 and disable automatic install to optimize workflow. Adjust step names for consistency and clarity.
  • Loading branch information
ncdai committed May 19, 2025
commit 9ddbc65a1085a68073e474709cdc90f022153805
23 changes: 12 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,30 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
node-version: 18.x
registry-url: "https://registry.npmjs.org"
version: 10
run_install: false

- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup Node.js 20.16.0
uses: actions/setup-node@v4
with:
version: 10.7.0
node-version: 20.16.0
cache: "pnpm"

- name: Install Dependencies
- name: Install dependencies
run: pnpm install

- name: Build Package
- name: Build package
run: pnpm build:react-wheel-picker

- name: Create Release Pull Request or Publish
- name: Create pelease pull request or publish to npm
id: changesets
uses: changesets/action@v1
with:
Expand Down