Skip to content
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

chore: set up initial actions & docs #1

Merged
merged 31 commits into from
Nov 29, 2024
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
60dd36d
chore: set up initial actions & docs
JakobJingleheimer Nov 21, 2024
bcbed74
fixup!: remove erroneous main field
JakobJingleheimer Nov 21, 2024
6cb3a8a
ci(test): create job matrix & rename `test:lint` → `lint`
JakobJingleheimer Nov 21, 2024
10d0692
doc: add license file
JakobJingleheimer Nov 21, 2024
c53f572
fixup!: rename jobs to be more indicative
JakobJingleheimer Nov 21, 2024
a3f83df
fixup!: correct `-test` → `--test`
JakobJingleheimer Nov 21, 2024
c29d623
fixup!: remove nonexistent "markdown" in biome config
JakobJingleheimer Nov 21, 2024
558162d
add git things
AugustinMauroy Nov 21, 2024
0d9698c
update biome things
AugustinMauroy Nov 21, 2024
a219502
Create .nvmrc
AugustinMauroy Nov 21, 2024
79b0149
add recipes dir
AugustinMauroy Nov 21, 2024
8590905
Fix typo
AugustinMauroy Nov 21, 2024
cb84d16
workflows: use `--run`
AugustinMauroy Nov 21, 2024
45bb65a
add more rules
AugustinMauroy Nov 21, 2024
bd21091
chore: alphabetise npm scripts
JakobJingleheimer Nov 23, 2024
6534d6d
test(ci): add `pre-commit` superset
JakobJingleheimer Nov 23, 2024
36af6af
chore: fix tsconfig
JakobJingleheimer Nov 23, 2024
7a72cbb
chore(ci): switch angry `node --run` → `npm run`
JakobJingleheimer Nov 23, 2024
3c81c16
chore: adjust glob pattern for angry CI
JakobJingleheimer Nov 25, 2024
d081e4b
test(ci): move coverage to only node 23.x
JakobJingleheimer Nov 25, 2024
db231d9
Revert "test(ci): move coverage to only node 23.x"
JakobJingleheimer Nov 25, 2024
741e67f
test(ci): remove 20.x
JakobJingleheimer Nov 25, 2024
bdd3b74
test(ci): switch actions from tag to SHA to avoid supply-chain vulner…
JakobJingleheimer Nov 25, 2024
30367c9
chore(dep): upgrade `typescript` to `5.7.2`
JakobJingleheimer Nov 25, 2024
3c408df
doc: update codemod registry link
JakobJingleheimer Nov 25, 2024
38df653
fixup!: remove biome bumperstickers
JakobJingleheimer Nov 25, 2024
d57d2dd
doc(license): set copyright holder & remove file extension
JakobJingleheimer Nov 27, 2024
eef8d21
[actions] use ljharb/actions/node/matrix (#3)
ljharb Nov 28, 2024
0faeabb
Revert "[actions] use ljharb/actions/node/matrix" (#4)
JakobJingleheimer Nov 28, 2024
5fc724f
ci: add dependabot
JakobJingleheimer Nov 28, 2024
80676be
fixup!: correct md block type
JakobJingleheimer Nov 28, 2024
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
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2

updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
commit-message:
prefix: ci

- package-ecosystem: npm # See documentation for possible values
directories:
- / # Location of package manifests
- /recipies/*
commit-message:
prefix: deps
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
prefix: deps
prefix: "deps(recipies): "

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we should have 2 separate ones then so we can differentiate between the root repo and recipes (cuz if we apply your suggestion, it will mark changes to the root repo's deps as belonging to a recipe).

schedule:
interval: weekly
Loading