ci: migrate from DroneCI to GitHub Actions#60
Open
DeepDiver1975 wants to merge 3 commits into
Open
Conversation
Replace the DroneCI pipeline (.drone.yml, Node 14, now EOL) with a native GitHub Actions workflow running on ubuntu-latest with Node 20 LTS. The workflow mirrors the existing Drone triggers (master, tags, pull requests) and runs the unchanged `npm test` command (Karma + FirefoxHeadless; Firefox is preinstalled on ubuntu-latest runners). Install uses `npm ci` against the committed package-lock.json. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com>
Pin actions/checkout to v6.0.3 and actions/setup-node to v6.4.0 by full commit SHA (with version comments) for supply-chain safety, replacing the mutable @v4 tags. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com>
jvillafanez
approved these changes
Jun 5, 2026
Add a Lint PR title workflow that enforces conventional-commit-style PR titles via amannn/action-semantic-pull-request, pinned by commit SHA (v6.1.1). Copied from owncloud/core. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com>
phil-davis
approved these changes
Jun 5, 2026
Member
Author
|
THX - will take care of merging ..... repo settings need to be taken care of .... |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replaces the DroneCI pipeline with a native GitHub Actions workflow.
.drone.yml(pinned Node 14, now EOL)..github/workflows/ci.ymlrunning onubuntu-latestwith Node 20 LTS.masterbranch, tags, and pull requests.npm test(Karma +FirefoxHeadless). Firefox is preinstalled onubuntu-latest, so no extra browser setup is needed.npm ciagainst the committedpackage-lock.json.No changes to
package.jsonorkarma.conf.js— the test command is reused as-is.Verification
npm cisucceeds locally against the lockfile.npm teststarts Karma cleanly; the only local failure is the absent Firefox binary, which is present on GitHub'subuntu-latestrunners.Note
If Drone was configured as a required status check in branch protection, a maintainer should remove that requirement so this PR (and future ones) aren't blocked by a check that no longer reports.
🤖 Generated with Claude Code