Skip to content

Fix: Remove DEP0190 deprecation warning in kfl run command #89

Fix: Remove DEP0190 deprecation warning in kfl run command

Fix: Remove DEP0190 deprecation warning in kfl run command #89

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
paths:
- ".github/workflows/ci.yml"
- ".nvmrc"
- "package.json"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"
- "packages/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: build, lint & test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build πŸ—οΈ
run: pnpm run build
- name: Typecheck πŸ”
run: pnpm run typecheck
- name: Lint 🎨
run: pnpm run lint
- name: Test πŸ§ͺ
run: pnpm run test