Skip to content
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

using pnpm instead of npm #11

Merged
merged 5 commits into from
Sep 30, 2024
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
10 changes: 5 additions & 5 deletions .github/workflows/_bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
ref: ${{ github.ref }}
- name: cat package.json
run: cat ./package.json
- name: Setup Node.js
uses: actions/setup-node@v4
- name: setup pnmp
uses: pnpm/action-setup@v4
with:
node-version: 22
version: 9
registry-url: https://npm.pkg.github.com/
- name: Automated Version Bump
uses: phips28/gh-action-bump-version@master
Expand All @@ -27,7 +27,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: cat package.json
run: cat ./package.json
- run: npm ci
- run: npm publish
- run: pnpm install --frozen-lockfile
- run: pnpm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
11 changes: 6 additions & 5 deletions .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
- name: setup pnmp
uses: pnpm/action-setup@v4
with:
node-version: 19
- run: npm ci
- run: npm run prettier
- run: npm run lint
version: 9
- run: pnpm install --frozen-lockfile
- run: pnpm prettier
- run: pnpm lint
Loading
Loading