Add CI workflow#18
Conversation
This commit introduces a new GitHub Actions workflow file to run linting, tests, and builds automatically when a PR is created or updated, as well as on pushes to the main/master branches. This ensures code quality and prevents merging failing tests. Co-authored-by: johnstrand <11484777+johnstrand@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
This commit fixes the previous build failure by updating package-lock.json and package.json to pin @types/node to version 14.14.31 to prevent incompatibility with older node environments set for TypeScript 3.9 in pipelines, and also pinned `@types/babel__traverse` to `7.11.1` to prevent TypeScript compilation failures that was introduced with the latest type definitions. Co-authored-by: johnstrand <11484777+johnstrand@users.noreply.github.com>
…k error By manually pinning `@babel/types` to `7.10.0` as a dev dependency and `@types/babel__traverse` to `7.0.6` via npm install, the TypeScript compile errors associated with Babel type incompatibilities are now resolved when using TypeScript 3.9. Co-authored-by: johnstrand <11484777+johnstrand@users.noreply.github.com>
Added a GitHub Actions workflow to run linting, tests, and build steps automatically on pull requests and pushes to the main branch.
PR created automatically by Jules for task 18075205900295884400 started by @johnstrand