Skip to content

fix: sfc error

fix: sfc error #64

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches-ignore:
- main
- test/*
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Set node
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: pnpm
- name: Install
run: pnpm i
- name: Test
run: pnpm test
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck