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
5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ updates:
schedule:
interval: "monthly"
versioning-strategy: increase
groups:
vitest:
patterns:
- "@vitest/coverage-v8"
- "vitest"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
3 changes: 0 additions & 3 deletions .mocharc.json

This file was deleted.

6 changes: 4 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,14 @@ runs:
INPUT_CODECOV_TREAT_TIMEOUT_AS_ERROR: ${{ inputs.codecov_treat_timeout_as_error }}
with:
script: |
import script from "./dist/index.js";
const path = process.env.GITHUB_ACTION_PATH;
const module = await import(`${path}/dist/index.js`);
const script = module.default;
await script(context, core, github);
- name: Spelling
uses: crate-ci/typos@392b78fe18a52790c53f42456e46124f77346842 # v1.34.0
with:
config: .typos.toml
config: ${{ github.action_path || github.workspace }}/.typos.toml
branding:
icon: "heart"
color: "red"
Loading