-
Notifications
You must be signed in to change notification settings - Fork 11
Replace bun with Node.js #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -60,12 +60,12 @@ runs: | |
| - name: Setup Auggie | ||
| run: npm install -g @augmentcode/auggie | ||
| shell: bash | ||
| - name: Setup Bun | ||
| uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2.0.2 | ||
| with: | ||
| bun-version: latest | ||
| - name: Install Action Dependencies | ||
| run: npm install --production=false | ||
| shell: bash | ||
| working-directory: ${{ github.action_path }} | ||
| - name: Run Augment Agent | ||
| run: bun run $GITHUB_ACTION_PATH/src/index.ts | ||
| run: npx tsx $GITHUB_ACTION_PATH/src/index.ts | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using 🤖 React with 👍 or 👎 to let us know if the comment was useful. |
||
| shell: bash | ||
| env: | ||
| INPUT_AUGMENT_SESSION_AUTH: ${{ inputs.augment_session_auth }} | ||
|
|
||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since dependencies are installed under
${{ github.action_path }},npx tsxmay not resolve here unless the working directory is set; consider settingworking-directory: ${{ github.action_path }}on this step (also applies if relying on localnode_modules/.bin).🤖 React with 👍 or 👎 to let us know if the comment was useful.