Add GitHub Actions CI workflow for lint#3
Merged
Conversation
Agent-Logs-Url: https://github.com/Portchain/postgrator/sessions/1328faab-27b0-42b1-8ead-c22ef09afc42 Co-authored-by: acoelhosantos <12519533+acoelhosantos@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
acoelhosantos
May 26, 2026 10:29
View session
Agent-Logs-Url: https://github.com/Portchain/postgrator/sessions/c026c91e-3b90-4b42-8e77-017bf8a3d274 Co-authored-by: acoelhosantos <12519533+acoelhosantos@users.noreply.github.com>
Agent-Logs-Url: https://github.com/Portchain/postgrator/sessions/5ccd9cdb-7036-4e50-964a-37f188b889fe Co-authored-by: acoelhosantos <12519533+acoelhosantos@users.noreply.github.com>
|
@copilot remove testing from the CI workflow |
Copilot
AI
changed the title
Add GitHub Actions CI workflow for lint and test
Add GitHub Actions CI workflow for lint
May 27, 2026
acoelhosantos
approved these changes
May 27, 2026
There was a problem hiding this comment.
Pull request overview
This PR introduces a GitHub Actions CI workflow to run the repository’s ESLint-based linting on pull requests, providing a baseline CI check alongside the existing CircleCI configuration.
Changes:
- Adds a
.github/workflows/ci.ymlworkflow triggered onpull_request. - Runs
npm cifollowed bynpm run lintusingactions/checkout@v4andactions/setup-node@v4. - Restricts
GITHUB_TOKENpermissions tocontents: read.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
acoelhosantos
approved these changes
May 27, 2026
s-petey
approved these changes
May 27, 2026
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.
No GitHub Actions CI existed; only a CircleCI config was present.
Changes
.github/workflows/ci.yml— single-job workflow triggered onpull_request:lint: runsnpm run lint(ESLint)permissions: contents: read(least-privilegeGITHUB_TOKEN)blacksmith-4vcpu-ubuntu-2404runneractions/checkout@v4andactions/setup-node@v4