Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/gold-colts-attack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
2 changes: 1 addition & 1 deletion .github/workflows/changeset-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Khan/actions@shared-node-cache-v2
- uses: Khan/actions@shared-node-cache-v3
with:
node-version: 20.x

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- uses: Khan/actions@shared-node-cache-v2
- uses: Khan/actions@shared-node-cache-v3
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -34,7 +34,7 @@ jobs:

- name: Run TypeScript
if: steps.ts-files.outputs.filtered != '[]'
run: yarn typecheck
run: pnpm typecheck

- id: eslint-reset
uses: Khan/actions@filter-files-v1
Expand All @@ -47,9 +47,9 @@ jobs:
uses: Khan/actions@full-or-limited-v0
with:
full-trigger: ${{ steps.eslint-reset.outputs.filtered }}
full: yarn eslint src/**/*.ts
full: pnpm eslint src/**/*.ts
limited-trigger: ${{ steps.ts-files.outputs.filtered }}
limited: yarn eslint {}
limited: pnpm eslint {}

- id: jest-reset
uses: Khan/actions@filter-files-v1
Expand All @@ -62,6 +62,6 @@ jobs:
uses: Khan/actions@full-or-limited-v0
with:
full-trigger: ${{ steps.jest-reset.outputs.filtered }}
full: yarn jest
full: pnpm jest
limited-trigger: ${{ steps.ts-files.outputs.filtered }}
limited: yarn jest --findRelatedTests {}
limited: pnpm jest --findRelatedTests {}
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit",
"publish:ci": "yarn run build && changeset publish",
"publish:ci": "pnpm build && changeset publish",
"build": "babel src --extensions '.ts, .tsx' --out-dir dist --ignore 'src/**/*.spec.ts','src/**/*.test.ts' && chmod 755 dist/cli/run.js"
},
"main": "dist/index.js",
Expand Down Expand Up @@ -62,5 +62,6 @@
"graphql": "^16.9.0",
"jsonschema": "^1.4.1",
"minimist": "^1.2.8"
}
},
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c"
}
Loading