Skip to content

Commit fc46dea

Browse files
committed
Use npm install rather than npm ci
I _think_ the switch to npm ci is causing some issues with how a babel/runtime dependency is being handled in MacOS vs Ubuntu. I'm seeing build changes from this workflow that I can't reproduce in my local environment at all: once with extensive gymnastics and then never again. I'm going to take the chance that `npm install` provides a way for OS dependent versions to be installed in this massive web of crap I don't want to understand.
1 parent f12d40a commit fc46dea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/verify-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
restore-keys: node-dependencies-
4545

4646
- name: Install Node dependencies
47-
run: npm ci
47+
run: npm install
4848

4949
- name: Build
5050
run: npm run build

0 commit comments

Comments
 (0)