Skip to content

fix(cli): create the components folder of it doesn't exist #5

fix(cli): create the components folder of it doesn't exist

fix(cli): create the components folder of it doesn't exist #5

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
paths: ['packages/cli/src/**', 'packages/cli/tests/**']
pull_request:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: pnpm
- name: Install Dependencies
run: pnpm install
- name: Running Tests
run: pnpm lint && pnpm test
- name: Building
run: pnpm cli:build