Skip to content

fixing tests

fixing tests #201

Workflow file for this run

# @format
name: Code Checks
on:
merge_group:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: ./.github/actions/provision
with:
node-version: '20'
- name: Install dependencies
run: yarn install --ignore-optional
- name: Build
run: yarn build
lint-eslint:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/provision
- name: Lint
run: yarn lint:eslint
lint-prettier:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/provision
- name: Prettier
run: yarn lint:prettier
typecheck:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/provision
- name: Typecheck
run: yarn lint:typecheck
test-unit:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/provision
- name: Unit Test
run: yarn test