Skip to content

Commit

Permalink
ci: use node20 forever
Browse files Browse the repository at this point in the history
  • Loading branch information
Markson Hon committed Nov 24, 2024
1 parent cf589ae commit 728bce7
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/beta_release_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
cache-dependency-path: gui/yarn.lock
shell: bash
run: |
brew install node@20
echo "PATH=\"$(brew --prefix)/opt/node@20/bin:$PATH\"" >> $GITHUB_ENV
echo "PATH=\"$(brew --prefix)/opt/node@20/bin:$PATH\"" >> ~/.bash_profile
- name: Install Dependencies
run: |
sudo apt-get update -y && sudo apt-get install -y gzip
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
cache-dependency-path: gui/yarn.lock
shell: bash
run: |
brew install node@20
echo "PATH=\"$(brew --prefix)/opt/node@20/bin:$PATH\"" >> $GITHUB_ENV
echo "PATH=\"$(brew --prefix)/opt/node@20/bin:$PATH\"" >> ~/.bash_profile
- name: Install Dependencies
run: |
sudo apt-get update -y && sudo apt-get install -y gzip
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
cache-dependency-path: gui/yarn.lock
shell: bash
run: |
brew install node@20
echo "PATH=\"$(brew --prefix)/opt/node@20/bin:$PATH\"" >> $GITHUB_ENV
echo "PATH=\"$(brew --prefix)/opt/node@20/bin:$PATH\"" >> ~/.bash_profile
- name: Install Dependencies
run: |
sudo apt-get update -y && sudo apt-get install -y gzip
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test_build_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
cache-dependency-path: gui/yarn.lock
shell: bash
run: |
brew install node@20
echo "PATH=\"$(brew --prefix)/opt/node@20/bin:$PATH\"" >> $GITHUB_ENV
echo "PATH=\"$(brew --prefix)/opt/node@20/bin:$PATH\"" >> ~/.bash_profile
- name: Install Dependencies
run: |
sudo apt-get update -y && sudo apt-get install -y gzip
Expand Down

0 comments on commit 728bce7

Please sign in to comment.