Skip to content

chore(deps): update yarn to v4 #235

chore(deps): update yarn to v4

chore(deps): update yarn to v4 #235

Workflow file for this run

name: test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.16.1
cache: 'yarn'
- name: Install dependencies
run: yarn add --cached
- name: Check types
run: yarn types
- name: Test
run: yarn test:ci
- name: Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/clover.xml
fail_ci_if_error: true
verbose: true