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

NodeJS support policy and CI improvements #130

Merged
merged 6 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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
15 changes: 15 additions & 0 deletions .github/auto-issue-templates/new-node-lts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# New Node.js LTS version detected

_Issue created automatically by a Github action._

A new Node.js LTS version has been detected: `{{ steps.check-version.outputs.new_lts_version }}`.

Please test the Log4brains project against this version and update the supported versions accordingly.

- [ ] Run `nvm use` and ensure `node -v` returns the new LTS version
- [ ] Run `rm -rf node_modules && yarn install`
- [ ] Run all the quality checks described in CONTRIBUTNG.md
- [ ] Run and test the app manually
- [ ] Fix the potential bugs
- [ ] Update `.github/supported_nodejs_versions.json`: add the new LTS version and remove the ones that are no longer supported (see [Node.js release schedule](https://github.com/nodejs/release#release-schedule))
- [ ] Update all `engine.node` fields in `package.json` files
3 changes: 3 additions & 0 deletions .github/supported_nodejs_versions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"versions": ["18.x", "20.x"]
thomvaill marked this conversation as resolved.
Show resolved Hide resolved
}
259 changes: 0 additions & 259 deletions .github/workflows/build.yml

This file was deleted.

Loading
Loading