Skip to content

Commit

Permalink
try fixing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-aurele-besner committed Jun 3, 2024
1 parent 2ff9204 commit 3c73d0b
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,23 @@ jobs:
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Enable Corepack
run: corepack enable

- name: Set Yarn version to Berry
run: corepack prepare [email protected] --activate

- name: Install dependencies
run: yarn install

- name: Build all packages 🔧
run: |
yarn set version berry
yarn install
yarn build
run: yarn build

- name: Run tests 🧪
run: yarn test
run: yarn test

0 comments on commit 3c73d0b

Please sign in to comment.