Skip to content

chore: fix example build #7

chore: fix example build

chore: fix example build #7

Workflow file for this run

name: Build & Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- run: yarn --immutable
- run: yarn lint
- run: yarn test
- name: 'Report Coverage'
if: always()
uses: davelosert/vitest-coverage-report-action@v2