Skip to content

fix: Linter errors + refactor mutationResult fixtures #68

fix: Linter errors + refactor mutationResult fixtures

fix: Linter errors + refactor mutationResult fixtures #68

Workflow file for this run

name: Unit Tests
on:
pull_request:
push:
branches:
- main
- development
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Yarn install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn coverage
- name: Upload coverage report
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
files: coverage/lcov.info