Skip to content

chore: ignore cd workflow for now and improve ci yaml file #44

chore: ignore cd workflow for now and improve ci yaml file

chore: ignore cd workflow for now and improve ci yaml file #44

Workflow file for this run

name: "CI"
on:
push:
branches:
- "main"
env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
jobs:
check:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 21
- name: install pnpm
run: npm i pnpm@latest -g
- name: setup pnpm config
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
- name: install dependencies
run: pnpm install
- name: Install dependencies
run: npm install
- name: Run CI
run: npm run ci