Skip to content

Commit a28761b

Browse files
author
Robin Fernandes
committed
temporarily do a npm install --force instead of npm ci to be able to install react-scripts alongside latest typescript. This can be reverted when facebook/create-react-app#13071 is merged.
1 parent bd0931b commit a28761b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/firebase-hosting-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/setup-node@v3
1616
with:
1717
node-version: 19
18-
- run: npm ci
18+
- run: npm install --force
1919
- run: npm run build
2020
- run: npm test
2121
- uses: FirebaseExtended/action-hosting-deploy@v0

.github/workflows/firebase-hosting-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/setup-node@v3
2020
with:
2121
node-version: 19
22-
- run: npm ci
22+
- run: npm install --force
2323
- run: npm run build
2424
- run: npm test
2525
- name: Firebase deploy to staging

.github/workflows/firebase-hosting-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/setup-node@v3
1313
with:
1414
node-version: 19
15-
- run: npm ci
15+
- run: npm install --force
1616
- run: npm run build
1717
- run: npm test
1818
- uses: FirebaseExtended/action-hosting-deploy@v0

0 commit comments

Comments
 (0)