Skip to content

Add GitHub Actions workflows for CI/CD#2

Merged
BrandonLWhite merged 14 commits intomainfrom
copilot/add-github-action-workflows
Feb 3, 2026
Merged

Add GitHub Actions workflows for CI/CD#2
BrandonLWhite merged 14 commits intomainfrom
copilot/add-github-action-workflows

Conversation

Copy link
Contributor

Copilot AI commented Feb 2, 2026

Adds standard CI/CD workflows for TypeScript-based GitHub Action projects.

Workflows

  • CI (ci.yml) - Test (Node 18/20), lint, build verification with uncommitted changes check
  • Check Dist (check-dist.yml) - Validates compiled dist/ stays in sync with source (critical for TS actions)
  • CodeQL (codeql.yml) - Security scanning on push/PR/weekly schedule
  • Release (release.yml) - Auto-updates major version tags (e.g., v1v1.2.3) on release publish
  • Dependabot (dependabot.yml) - Weekly npm and GitHub Actions dependency updates

Security

All jobs use explicit minimal permissions (contents: read by default, contents: write for release only).

Notes

  • Major version extraction handles multi-digit versions correctly (v10.0.0v10)
  • Coverage uploads to Codecov on Node 20 matrix job only
  • Dependencies grouped by update type to reduce PR noise
Original prompt

This section details on the original issue you should resolve

<issue_title>Add GitHub action workflows</issue_title>
<issue_description>Add GHA workflows for CI/CD operations typical of a Typescript based GitHub Action project.</issue_description>

Comments on the Issue (you are @copilot in this section)


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Copilot AI and others added 5 commits February 2, 2026 23:09
Co-authored-by: BrandonLWhite <2344027+BrandonLWhite@users.noreply.github.com>
Co-authored-by: BrandonLWhite <2344027+BrandonLWhite@users.noreply.github.com>
Co-authored-by: BrandonLWhite <2344027+BrandonLWhite@users.noreply.github.com>
Co-authored-by: BrandonLWhite <2344027+BrandonLWhite@users.noreply.github.com>
Co-authored-by: BrandonLWhite <2344027+BrandonLWhite@users.noreply.github.com>
Copilot AI changed the title [WIP] Add GitHub action workflows for CI/CD operations Add GitHub Actions workflows for CI/CD Feb 2, 2026
Copilot AI requested a review from BrandonLWhite February 2, 2026 23:15
- Added ESLint and TypeScript ESLint as devDependencies in package.json.
- Updated test files to remove unused imports and adjust CoverageFile type usage.
- Created a new ESLint configuration file to enforce coding standards and rules.
- Deleted the uploader.d.ts and uploader.d.ts.map files as they are no longer needed.
- Updated the build script in package.json to use --transpile-only for faster builds.
@github-advanced-security
Copy link

This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation.

@BrandonLWhite BrandonLWhite marked this pull request as ready for review February 3, 2026 19:15
@BrandonLWhite BrandonLWhite merged commit dceddcf into main Feb 3, 2026
7 of 9 checks passed
@BrandonLWhite BrandonLWhite deleted the copilot/add-github-action-workflows branch February 3, 2026 19:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add GitHub action workflows

2 participants