Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/actions/get-release-notes/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
using: composite

steps:
- uses: actions/github-script@v7
- uses: actions/github-script@v8
id: get_release_notes
with:
result-encoding: string
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/npm-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ runs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ inputs.node-version }}
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
release:
uses: ./.github/workflows/npm-release.yml
with:
node-version: 22
node-version: 24
require-build: true
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: 'npm'

- name: Install dependencies
Expand Down
18 changes: 10 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions scripts/lang-audit.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,7 @@ const validateLangFile = async (reference, filePath, verbose) => {
for (const missing of result.missing) {
console.log(
chalk.red(
`Missing translation for ${path.basename(filePath)} -> ${missing.key} = "${
missing.text
}"`
`Missing translation for ${path.basename(filePath)} -> ${missing.key} = "${missing.text}"`
)
);
}
Expand Down