Skip to content

WIP: feat: preset setting (close: #57) #175

WIP: feat: preset setting (close: #57)

WIP: feat: preset setting (close: #57) #175

Workflow file for this run

on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- '**'
push:
branches:
- 'main'
name: CI Test, Typecheck
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-test
cancel-in-progress: true
env:
CI: true
NODE_OPTIONS: --max-old-space-size=8192
HUSKY: 0
jobs:
test:
name: Test & Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
run: npm install -g pnpm@9
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run typecheck
run: pnpm run typecheck
- name: Run test
run: pnpm run coverage
- name: Upload coverage data
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
disable_search: true
files: ./coverage/lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false