Skip to content

Commit

Permalink
Use .nvmrc to install correct version of node before deployment to fi…
Browse files Browse the repository at this point in the history
…rebase
  • Loading branch information
eloisetaylor5693 committed Dec 10, 2023
1 parent 76a11d6 commit f0698cd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Install node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"

- run: yarn install --immutable --immutable-cache

- run: yarn build
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Install node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"

- run: yarn install --immutable --immutable-cache

- run: yarn build
Expand Down
File renamed without changes.

0 comments on commit f0698cd

Please sign in to comment.