Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
maphel committed Sep 3, 2023
2 parents 0315ceb + e058e19 commit 47fe635
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,22 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v2

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

- name: Install Yarn 3 (Berry)
run: npm install -g yarn@berry

- name: Set up Yarn 3
run: yarn set version berry

- name: Install dependencies
run: yarn install --frozen-lockfile
run: yarn install --immutable

- name: Build
run: yarn build

- name: Run tests with coverage
run: yarn test --coverage
run: yarn test

0 comments on commit 47fe635

Please sign in to comment.