-
Notifications
You must be signed in to change notification settings - Fork 12
chore: update ci/cd configuration #789
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
Changes from all commits
8316f97
ca8727b
eea2bbb
c3c632f
0050876
220abde
09cceb1
3b124d7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,34 +3,36 @@ name: "Publish packages" | |
| on: | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
|
|
||
|
|
||
| jobs: | ||
| publish: | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
| runs-on: ubuntu-latest | ||
| environment: | ||
| name: release | ||
| steps: | ||
| - name: ⚙️ Checkout Repository | ||
| uses: actions/checkout@v6 | ||
| - name: 🛠️ Set up Node.js | ||
| uses: actions/setup-node@v6 | ||
| with: | ||
| node-version: '24.x' | ||
| registry-url: 'https://registry.npmjs.org/' | ||
| - name: ⚙️ Checkout Repository | ||
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | ||
|
Comment on lines
+16
to
+17
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shared root cause: Both workflows should set 🧰 Tools🪛 zizmor (1.25.2)[warning] 16-17: credential persistence through GitHub Actions artifacts (artipacked): does not set persist-credentials: false (artipacked) 🤖 Prompt for AI AgentsSource: Linters/SAST tools |
||
|
|
||
| - name: 🛠️ Set up Node.js | ||
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | ||
| with: | ||
| node-version: '24.x' | ||
| registry-url: 'https://registry.npmjs.org/' | ||
|
|
||
| - name: 📦 Install Dependencies | ||
| run: npm ci | ||
| - name: 📦 Install Dependencies | ||
| run: npm ci | ||
|
|
||
| - name: 🔨 Build all packages | ||
| run: npm run build | ||
| - name: 🔨 Build all packages | ||
| run: npm run build | ||
|
|
||
| - name: 🚀 Publish Jitar | ||
| run: npm run publish-jitar | ||
| - name: 🚀 Publish Jitar | ||
| run: npm run publish-jitar | ||
|
|
||
| - name: 🚀 Publish plugin for Vite | ||
| run: npm run publish-plugin | ||
| - name: 🚀 Publish plugin for Vite | ||
| run: npm run publish-plugin | ||
|
|
||
| - name: ✅ Publish Complete | ||
| run: echo "Packages published" | ||
| - name: ✅ Publish Complete | ||
| run: echo "Packages published" | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix YAMLlint bracket spacing in the matrix list.
This line violates YAMLlint’s brackets rule.
🧹 Proposed fix
📝 Committable suggestion
🧰 Tools
🪛 YAMLlint (1.37.1)
[error] 20-20: too many spaces inside brackets
(brackets)
[error] 20-20: too many spaces inside brackets
(brackets)
🤖 Prompt for AI Agents
Source: Linters/SAST tools