Skip to content

Commit

Permalink
chore(ci): do redundant setup-node step before checkout to enable yar…
Browse files Browse the repository at this point in the history
…n v4 before deps install
  • Loading branch information
legobeat committed Apr 26, 2024
1 parent a5e17fa commit 1a1f680
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,18 @@ jobs:
name: Prepare
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
node-version: 'lts/*'
- name: Install Yarn
run: corepack enable
- uses: actions/checkout@v4
- name: Use Node.js and install dependencies
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install Yarn dependencies
run: yarn --immutable

Expand Down

0 comments on commit 1a1f680

Please sign in to comment.