Skip to content

Conversation

@Overtorment
Copy link
Member

@Overtorment Overtorment commented Nov 24, 2025

  • renamed jest script to integration script
  • split test job into several (lint, unit, integration)
  • removing circleci, dont see value in it anymore

Note

Replaces CircleCI with a GitHub Actions workflow split into lint, unit, integration, and new e2e jobs, and updates npm scripts to add an integration target and streamline test.

  • CI:
    • Remove CircleCI config /.circleci/config.yml.
    • Add/update GitHub Actions workflow /.github/workflows/ci.yml:
      • lint: installs deps and runs npm run lint on Node 22.
      • unit: runs npm run unit with required secrets.
      • integration: runs npm run integration with required secrets and RETRY=1.
      • e2e: builds Android release, runs tests on emulator with caching, disk-space optimizations, Java 17, and uploads artifacts on failure.
  • Scripts (package.json):
    • test: remove redundant tslint invocation (still covered by lint).
    • Add integration script (jest tests/integration/*).

Written by Cursor Bugbot for commit adfd30a. This will update automatically on new commits. Configure here.

@Overtorment Overtorment force-pushed the ops-simplify-ci-tests branch from 6e339d7 to adfd30a Compare November 24, 2025 19:55
"patches": "",
"test": "npm run tslint && npm run lint && npm run unit && npm run jest",
"jest": "jest tests/integration/*",
"test": "npm run lint && npm run unit && npm run jest",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Test script references nonexistent jest script

The test script calls npm run jest, but the jest script was renamed to integration in the same commit. Running npm test will fail with an error indicating the jest script doesn't exist.

Fix in Cursor Fix in Web

@Overtorment Overtorment merged commit fe9e975 into master Nov 25, 2025
14 of 15 checks passed
@Overtorment Overtorment deleted the ops-simplify-ci-tests branch November 25, 2025 08:38
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.

3 participants