Skip to content

chore(deps): update yarn to v4 #329

chore(deps): update yarn to v4

chore(deps): update yarn to v4 #329

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Prepare
run: yarn dev:prepare
- name: Build
run: yarn prepack
- name: Unit tests
run: yarn test --coverage
- name: Coverage
uses: codecov/codecov-action@v4