-
Notifications
You must be signed in to change notification settings - Fork 198
Add: cache #2633
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
Add: cache #2633
Changes from all commits
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 | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -15,21 +15,29 @@ jobs: | |||||||||||||
| runs-on: ubuntu-latest | ||||||||||||||
| steps: | ||||||||||||||
| - uses: actions/checkout@v4 | ||||||||||||||
|
|
||||||||||||||
| - name: Use Node.js | ||||||||||||||
| uses: actions/setup-node@v3 | ||||||||||||||
| with: | ||||||||||||||
| node-version: 20 | ||||||||||||||
|
Comment on lines
20
to
22
Contributor
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. Update
Apply this diff: - name: Use Node.js
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
with:
node-version: 20📝 Committable suggestion
Suggested change
🧰 Tools🪛 actionlint (1.7.8)20-20: the runner of "actions/setup-node@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue (action) 🤖 Prompt for AI Agents |
||||||||||||||
|
|
||||||||||||||
| - name: Install pnpm | ||||||||||||||
| uses: pnpm/action-setup@v4 | ||||||||||||||
|
|
||||||||||||||
| - name: Audit dependencies | ||||||||||||||
| run: pnpm audit --audit-level high | ||||||||||||||
|
|
||||||||||||||
| - name: Install dependencies | ||||||||||||||
| run: pnpm install --frozen-lockfile | ||||||||||||||
|
|
||||||||||||||
| - name: Svelte Diagnostics | ||||||||||||||
| run: pnpm run check | ||||||||||||||
|
|
||||||||||||||
| - name: Linter | ||||||||||||||
| run: pnpm run lint | ||||||||||||||
|
|
||||||||||||||
| - name: Unit Tests | ||||||||||||||
| run: pnpm run test | ||||||||||||||
|
|
||||||||||||||
| - name: Build Console | ||||||||||||||
| run: pnpm run build | ||||||||||||||
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.
Update
actions/setup-nodeto v4.actions/setup-node@v3is outdated and no longer actively maintained. Update to the latest version for improved compatibility, security patches, and performance.Apply this diff:
🧰 Tools
🪛 actionlint (1.7.8)
17-17: the runner of "actions/setup-node@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue
(action)
🤖 Prompt for AI Agents