Skip to content

chore(deps-dev): bump tsup from 8.0.1 to 8.2.1 #181

chore(deps-dev): bump tsup from 8.0.1 to 8.2.1

chore(deps-dev): bump tsup from 8.0.1 to 8.2.1 #181

Workflow file for this run

name: Quality-Check
on:
push:
branches:
- "**"
workflow_dispatch:
workflow_call:
jobs:
quality-check:
name: "Tests - Node: ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18.x
- 20.x
- 21.x
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare
with:
node-version: ${{ matrix.node-version }}
- name: Lint
run: pnpm run lint
- name: Build
run: pnpm run build
- name: Tests
run: pnpm run test:ci