Skip to content

printing some comments #770

printing some comments

printing some comments #770

Workflow file for this run

name: CI
on: push
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- run: yarn install --frozen-lockfile --prefer-offline
- run: yarn format:check
- run: yarn linter:check
- run: yarn ts:check
- run: yarn test:run
- uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}