Skip to content

Update dependency commander to v13 #1680

Update dependency commander to v13

Update dependency commander to v13 #1680

Workflow file for this run

name: Tests
on:
pull_request:
paths:
- '**'
jobs:
build:
name: Builds & Tests
runs-on: ubuntu-latest
strategy:
matrix:
prj:
[
eslint-config,
handles,
helpers,
internals,
vite-plugin-kit-routes,
vite-plugin-stripper,
vite-plugin-watch-and-run,
]
steps:
- name: 🌐 Checkout Repository
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: 🧑‍💻 Setup env
uses: jycouet/jycouet/shared-config/setup@main
with:
pnpmVersion: 9.15.1
nodeVersion: 22.11.0
- name: 🚧 Build Packages
run: pnpm -F "!website" build
- name: 🧹 Lint Check
run: pnpm -F ${{ matrix.prj }} lint
- name: 👌 Run Tests
run: pnpm -F ${{ matrix.prj }} test:ci