Skip to content

chore: fix release command #11

chore: fix release command

chore: fix release command #11

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize]
env:
TURBO_TELEMETRY_DISABLED: 1
jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Code Format
run: pnpm run format:check
- name: Build
run: pnpm run build
- name: Test
run: pnpm run test