Skip to content

Commit

Permalink
ci: avoid yarn install failures
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Oct 26, 2024
1 parent 2dd7663 commit 414ff1b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,6 @@ jobs:
- 10
- 22
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4

- name: Place Builds
Expand All @@ -229,13 +227,15 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Install Yarn
run: |
npm i -g yarn
yarn set version stable
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Smoke Test
run: npm run test.smoke

0 comments on commit 414ff1b

Please sign in to comment.