Skip to content

chore(deps): update yarn to v3.6.1 #1664

chore(deps): update yarn to v3.6.1

chore(deps): update yarn to v3.6.1 #1664

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '16', '18' ]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 10
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies
run: |
corepack enable
yarn install
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test:coverage
- uses: codecov/codecov-action@v3