Skip to content

CI yarn install fix #973

CI yarn install fix

CI yarn install fix #973

Workflow file for this run

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