Skip to content

feat(init): allow selecting package manager when creating new project #188

feat(init): allow selecting package manager when creating new project

feat(init): allow selecting package manager when creating new project #188

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- run: pnpm install
- run: pnpm lint
- run: pnpm build
- run: pnpm test:dist
# - run: pnpm vitest --coverage && rm -rf coverage/tmp
# - uses: codecov/codecov-action@v3