revert to js action

This commit is contained in:
David Blass
2025-11-06 17:35:32 -05:00
parent f31e3a026e
commit 65e3da81e9
6 changed files with 267 additions and 27 deletions
+2 -25
View File
@@ -12,31 +12,8 @@ inputs:
required: false
runs:
using: "composite"
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: "*"
- name: Setup Node.js 24
uses: actions/setup-node@v4
with:
node-version: "24"
- name: Install dependencies
run: pnpm install
shell: bash
working-directory: ${{ github.action_path }}
- name: Run agent
run: |
cd $GITHUB_WORKSPACE
node ${{ github.action_path }}/entry.ts
shell: bash
env:
INPUTS_JSON: ${{ toJSON(inputs) }}
using: "node20"
main: "entry.cjs"
branding:
icon: "code"