-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: improve GHA + upgrade node versions (#331)
- Loading branch information
1 parent
2c8140a
commit ea26297
Showing
6 changed files
with
112 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,29 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
groups: | ||
actions-deps: | ||
patterns: | ||
- "*" | ||
|
||
- package-ecosystem: npm | ||
directory: / | ||
schedule: | ||
interval: "weekly" | ||
interval: monthly | ||
groups: | ||
security-updates: | ||
applies-to: security-updates | ||
patterns: | ||
- "*" | ||
major-updates: | ||
applies-to: version-updates | ||
update-types: | ||
- "major" | ||
minor-updates: | ||
applies-to: version-updates | ||
update-types: | ||
- "minor" | ||
- "patch" |
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,28 @@ | ||
name: Lint Github Actions | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- ".github/**" | ||
pull_request: | ||
paths: | ||
- ".github/**" | ||
|
||
jobs: | ||
lint: | ||
name: Lint YAML files | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ibiqlik/action-yamllint@v3 | ||
with: | ||
file_or_dir: .github | ||
config_data: | | ||
extends: default | ||
rules: | ||
line-length: | ||
max: 120 | ||
level: warning | ||
document-start: disable | ||
truthy: disable |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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