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

fix: npm fails to publish #505

Merged
merged 2 commits into from
Jan 24, 2024
Merged
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/on-merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 16
- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: 16
- name: Update npm to 8.x
node-version: 20
- name: Update npm to 10.x
run: |
npm i -g npm@8
npm i -g npm@10
- name: Install Dependencies
run: npm install
- name: Setup CI Git User
Expand All @@ -35,7 +35,7 @@ jobs:
run: |
npm run clean
npm run build
npm login
npm whoami
- name: "Create Pull Request or Publish to npm"
uses: changesets/action@v1
with:
Expand Down