Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v3
with:
cache: 'yarn'
cache: 'pnpm'
- name: Install Dependencies
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Check build health
run: yarn build
run: pnpm build

- name: Check for regressions
run: yarn eslint:ci
run: pnpm eslint:ci

- name: Run tests
run: yarn test
run: pnpm test
12 changes: 7 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,14 @@ jobs:
- name: Check out repository
uses: actions/checkout@v6

- uses: pnpm/action-setup@v6

- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24
registry-url: https://registry.npmjs.org
package-manager-cache: false
cache: 'pnpm'

- name: Verify release version
env:
Expand All @@ -60,16 +62,16 @@ jobs:
fi

- name: Install dependencies
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Lint
run: yarn eslint:ci
run: pnpm eslint:ci

- name: Test
run: yarn test
run: pnpm test

- name: Build
run: yarn build
run: pnpm build

- name: Publish package
env:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ yarn-error.log
.size-snapshot.json
pnpm-debug.log
.parcel-cache
pnpm-lock.yaml
storybook-static

*.tgz
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Thanks for wanting to make a contribution and wanting to improve this library fo
## How to Contribute

1. Fork and clone the repo
2. Run `yarn install` to install dependencies
2. Run `pnpm install` to install dependencies
3. Create a branch for your PR with `git checkout -b pr-type/issue-number-your-branch-name`
4. Let's get cooking! 👨🏻‍🍳🥓

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"3d"
],
"license": "MIT",
"packageManager": "pnpm@11.15.1",
"files": [
"dist",
"src"
Expand Down
Loading