Skip to content

chore(deps): update dependency @antfu/eslint-config to v2.27.3 #175

chore(deps): update dependency @antfu/eslint-config to v2.27.3

chore(deps): update dependency @antfu/eslint-config to v2.27.3 #175

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Test-CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
pull_request:
env:
NODE_ENV: prod
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: pnpm/action-setup@v2.4.0
with:
node-version: 16
cache: pnpm
- run: pnpm install
- name: Type Check
run: pnpm type:check
- name: Test
run: pnpm test
- name: Docs Build
run: pnpm docs:build