Compare commits

..

6 Commits

Author SHA1 Message Date
David Blass ec0eeb1d18 add packageManager to action package.json 2025-10-13 15:27:46 -04:00
David Blass 8ef805b9fc remove pnpm version from publish action 2025-10-13 15:27:05 -04:00
David Blass 6e93fd9a72 specify packageManager 2025-10-13 15:24:04 -04:00
David Blass 9567d84442 setup pnpm first 2025-10-13 15:21:09 -04:00
David Blass d79564db5e add pnpm setup 2025-10-13 15:14:51 -04:00
David Blass a7a0e87fd8 setup deps 2025-10-13 15:12:38 -04:00
4 changed files with 14 additions and 6 deletions
+1 -3
View File
@@ -23,13 +23,11 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
node-version: "24"
cache: "pnpm"
registry-url: "https://registry.npmjs.org"
+9 -1
View File
@@ -20,11 +20,19 @@ inputs:
runs:
using: "composite"
steps:
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js 24
uses: actions/setup-node@v4
with:
node-version: "24"
- name: Run TypeScript entry point
cache: "pnpm"
cache-dependency-path: ${{ github.action_path }}/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
shell: bash
working-directory: ${{ github.action_path }}
- name: Run agent
run: node entry.ts
shell: bash
working-directory: ${{ github.action_path }}
+2 -1
View File
@@ -26164,7 +26164,7 @@ async function main(params) {
// package.json
var package_default = {
name: "@pullfrog/action",
version: "0.0.32",
version: "0.0.38",
type: "module",
files: [
"index.js",
@@ -26190,6 +26190,7 @@ var package_default = {
upDeps: "pnpm up --latest",
createLockfile: "pnpm --ignore-workspace install"
},
packageManager: "pnpm@10.18.2",
dependencies: {
"@ark/fs": "0.49.0",
"@actions/core": "^1.11.1",
+2 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@pullfrog/action",
"version": "0.0.32",
"version": "0.0.38",
"type": "module",
"files": [
"index.js",
@@ -26,6 +26,7 @@
"upDeps": "pnpm up --latest",
"createLockfile": "pnpm --ignore-workspace install"
},
"packageManager": "pnpm@10.18.2",
"dependencies": {
"@ark/fs": "0.49.0",
"@actions/core": "^1.11.1",