Skip to content

test(mutation): define mutation with effect scopes #330

test(mutation): define mutation with effect scopes

test(mutation): define mutation with effect scopes #330

Workflow file for this run

name: ci
on:
push:
branches:
- '**'
paths-ignore:
- 'docs/**'
# We don't need to test tags
tags-ignore:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run test
- run: pnpm run size
# avoid updating deps that do not build docs
- run: pnpm run docs:api:build
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}