We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35d7906 commit cca6421Copy full SHA for cca6421
1 file changed
.github/workflows/server-tests.yml
@@ -53,16 +53,17 @@ jobs:
53
- name: Check out repository code
54
uses: actions/checkout@v4
55
56
+ - name: Setup pnpm
57
+ uses: pnpm/action-setup@v4
58
+
59
- name: Setup Node
60
uses: actions/setup-node@v4
61
with:
62
node-version: 20
- cache: 'pnpm' # Built-in caching for faster runs
63
+ cache: 'pnpm'
64
65
- name: Install dependencies
- run: |
- corepack enable
- pnpm i --frozen-lockfile
66
+ run: pnpm i --frozen-lockfile
67
68
- name: Prepare test database
69
run: ./.github/scripts/prepare-test-template-db.sh
0 commit comments