CI yarn install fix #973
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '18.x' | |
- name: Install Latest Yarn (v3 or v4) | |
run: | | |
npm install -g yarn@berry | |
yarn set version stable # This ensures you get the latest stable release (v4.x.x) | |
- uses: actions/checkout@v2 | |
- name: Install npm dependencies | |
run: | | |
yarn | |