Add GitHub Actions workflows for CI/CD#2
Merged
BrandonLWhite merged 14 commits intomainfrom Feb 3, 2026
Merged
Conversation
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
- 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.
|
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. |
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.
Adds standard CI/CD workflows for TypeScript-based GitHub Action projects.
Workflows
ci.yml) - Test (Node 18/20), lint, build verification with uncommitted changes checkcheck-dist.yml) - Validates compileddist/stays in sync with source (critical for TS actions)codeql.yml) - Security scanning on push/PR/weekly schedulerelease.yml) - Auto-updates major version tags (e.g.,v1→v1.2.3) on release publishdependabot.yml) - Weekly npm and GitHub Actions dependency updatesSecurity
All jobs use explicit minimal permissions (
contents: readby default,contents: writefor release only).Notes
v10.0.0→v10)Original prompt
💡 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.