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
8 changes: 4 additions & 4 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,18 @@ jobs:
node-version-file: '.nvmrc'
cache: 'yarn'

- name: Update npm
run: npm install -g npm@11.5.1

- name: Install dependencies
run: yarn install

- name: Bump version
run: yarn version patch

- name: Publish package
run: |
echo "npmAuthToken: \${NPM_TOKEN}" >> .yarnrc.yml
yarn npm publish
run: yarn npm publish
Copy link

Copilot AI Oct 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The NPM_TOKEN secret has been removed but no OIDC configuration is visible in this diff. Ensure that proper OIDC authentication is configured elsewhere in the workflow (e.g., permissions section or configure-aws-credentials action) to authenticate with the npm registry.

Copilot uses AI. Check for mistakes.
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_OPTIONS: --max-old-space-size=8192

- name: Set git username with email
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@ coverage
.vitepress/cache
.vitepress/dist

.env
.env

.DS_Store
Loading