Skip to content

Commit

Permalink
chore(workflows): update Node.js and pnpm versions
Browse files Browse the repository at this point in the history
fix(api): remove unused ruleSets from project data response
  • Loading branch information
cstrnt committed Feb 18, 2025
1 parent dc0a57c commit 698b43b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
- name: setup node.js
uses: actions/setup-node@v3
with:
node-version: "20.12.0"
node-version: "22.8.0"
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
version: 9.9.0
run_install: false
- name: Setup npmrc
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20.12.0"
node-version: "22.8.0"

- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
version: 9.9.0
run_install: false

- name: Get pnpm store directory
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/api/routes/v1_project_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function getAbbyResponseWithCache({
projectId,
},
},
include: { flag: { select: { name: true, type: true } }, ruleSets: true },
include: { flag: { select: { name: true, type: true } } },
}),
]);
endTime(c, "db");
Expand Down

0 comments on commit 698b43b

Please sign in to comment.