Skip to content

minor changes to fix some styles #106

minor changes to fix some styles

minor changes to fix some styles #106

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
actions: read
contents: read
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
filter: tree:0
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- name: Lint & Typecheck
id: lint-typecheck
run: npx nx run-many -t lint typecheck
- name: Test with Coverage
if: ${{ !cancelled() }}
run: npx nx run-many -t test --coverage