We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be25570 commit 0830580Copy full SHA for 0830580
1 file changed
.github/workflows/firebase-deploy.yml
@@ -17,7 +17,15 @@ jobs:
17
steps:
18
- uses: actions/checkout@v3
19
20
- - name: Setup Node.js
+ - name: Setup Node.js for pnpm
21
+ uses: actions/setup-node@v2
22
+ with:
23
+ node-version: '23.10'
24
+
25
+ - name: Install pnpm
26
+ run: npm install -g pnpm@~10.12
27
28
+ - name: Setup Node.js using pnpm
29
uses: actions/setup-node@v2
30
with:
31
node-version: '23.10'
@@ -26,11 +34,8 @@ jobs:
34
'pnpm-lock.yaml'
35
'functions/pnpm-lock.yaml'
36
- - name: Install pnpm
- run: npm install -g pnpm@~10.12
-
32
37
- name: Install Firebase CLI
33
- run: npm install -g firebase-tools@~14.11
38
+ run: npm install -g firebase-tools@~14.11
39
40
- name: Install Frontend dependencies
41
run: pnpm install
0 commit comments