Skip to content

Commit da061c5

Browse files
committed
fixup!
1 parent b7e03c3 commit da061c5

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/sync-orama.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# AUTHORS, please only use actions with explicit SHA references, and avoid using `@master` or `@main` references or `@version` tags.
77
# MERGE QUEUE NOTE: This Workflow does not run on `merge_group` trigger, as this Workflow is not required for Merge Queue's
88

9-
name: Lighthouse
9+
name: Sync Orama Cloud
1010

1111
on:
1212
push:
@@ -33,6 +33,19 @@ jobs:
3333
with:
3434
ref: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || github.ref }}
3535

36+
- name: Set up pnpm
37+
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
38+
39+
- name: Set up Node.js
40+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
41+
with:
42+
# We want to ensure that the Node.js version running here respects our supported versions
43+
node-version-file: ".nvmrc"
44+
cache: "pnpm"
45+
46+
- name: Install packages
47+
run: pnpm install --frozen-lockfile
48+
3649
- name: Sync Orama Cloud
3750
working-directory: apps/site
3851
run: node --run sync-orama

0 commit comments

Comments
 (0)