generated from RebeccaStevens/template-typescript-node-package
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe7c08a
commit 3ee22ca
Showing
45 changed files
with
2,730 additions
and
2,627 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,57 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"automergeStrategy": "rebase", | ||
"extends": [ | ||
":automergeAll", | ||
":automergePr", | ||
":ignoreModulesAndTests", | ||
"replacements:all", | ||
"workarounds:all", | ||
":prConcurrentLimitNone", | ||
":prHourlyLimitNone", | ||
":semanticCommits", | ||
"group:allNonMajor", | ||
"group:monorepos", | ||
"group:recommended", | ||
":automergeAll", | ||
":automergePr", | ||
":semanticCommits", | ||
":prHourlyLimitNone", | ||
":prConcurrentLimitNone", | ||
"helpers:disableTypesNodeMajor", | ||
"schedule:weekly" | ||
"replacements:all", | ||
"schedule:monthly", | ||
"workarounds:all" | ||
], | ||
"labels": ["Type: Maintenance", ":blue_heart:"], | ||
"automergeStrategy": "rebase", | ||
"postUpdateOptions": ["pnpmDedupe"], | ||
"rebaseWhen": "behind-base-branch", | ||
"packageRules": [ | ||
{ | ||
"matchManagers": ["npm"], | ||
"major": { | ||
"semanticCommitType": "build" | ||
}, | ||
"matchDepTypes": ["dependencies"], | ||
"matchManagers": ["npm"], | ||
"rangeStrategy": "update-lockfile", | ||
"semanticCommitType": "chore", | ||
"semanticCommitScope": "deps", | ||
"major": { | ||
"semanticCommitType": "build" | ||
} | ||
"semanticCommitType": "chore" | ||
}, | ||
{ | ||
"matchManagers": ["npm"], | ||
"matchDepTypes": ["devDependencies"], | ||
"matchManagers": ["npm"], | ||
"rangeStrategy": "pin", | ||
"semanticCommitType": "chore", | ||
"semanticCommitScope": "dev-deps" | ||
"semanticCommitScope": "dev-deps", | ||
"semanticCommitType": "chore" | ||
}, | ||
{ | ||
"matchManagers": ["npm"], | ||
"major": { | ||
"semanticCommitType": "build" | ||
}, | ||
"matchDepTypes": ["peerDependencies"], | ||
"matchManagers": ["npm"], | ||
"rangeStrategy": "widen", | ||
"semanticCommitType": "chore", | ||
"semanticCommitScope": "peer-deps", | ||
"major": { | ||
"semanticCommitType": "build" | ||
} | ||
"semanticCommitType": "chore" | ||
}, | ||
{ | ||
"matchManagers": ["github-actions"], | ||
"rangeStrategy": "replace", | ||
"semanticCommitType": "ci", | ||
"semanticCommitScope": "dev-deps" | ||
"semanticCommitScope": "dev-deps", | ||
"semanticCommitType": "ci" | ||
} | ||
] | ||
], | ||
"postUpdateOptions": ["pnpmDedupe"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Accessibility Alt Text Bot | ||
|
||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
- edited | ||
issues: | ||
types: | ||
- edited | ||
- opened | ||
pull_request: | ||
types: | ||
- edited | ||
- opened | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
accessibility_alt_text_bot: | ||
if: ${{ !endsWith(github.actor, '[bot]') }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: github/accessibility-alt-text-bot@v1.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Lint Packages | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
workflow_call: | ||
|
||
jobs: | ||
lint_packages: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/prepare | ||
- run: pnpm run lint:packages |
6 changes: 3 additions & 3 deletions
6
.github/workflows/lint-prettier.yml → .github/workflows/lint-yaml.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: Prettier | ||
name: Lint Yaml | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
workflow_call: | ||
|
||
jobs: | ||
lint_prettier: | ||
lint_yaml: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/prepare | ||
- run: pnpm run lint:prettier | ||
- run: pnpm run lint:yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
.github/workflows/type-check.yml → .github/workflows/typecheck.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: Type Check | ||
|
||
on: | ||
# pull_request: | ||
pull_request: | ||
workflow_dispatch: | ||
workflow_call: | ||
|
||
jobs: | ||
type-check: | ||
typecheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/prepare | ||
- run: pnpm run type-check | ||
- run: pnpm run typecheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
pnpm exec commitlint --edit $1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
pnpm exec lint-staged |
Oops, something went wrong.