Skip to content

chore(deps-dev): bump tsup from 8.0.2 to 8.1.0 #5

chore(deps-dev): bump tsup from 8.0.2 to 8.1.0

chore(deps-dev): bump tsup from 8.0.2 to 8.1.0 #5

Workflow file for this run

name: Pull Request Check
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Installing dependencies
run: npm ci
- name: Running Tests
run: npm run test
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Installing dependencies
run: npm ci
- name: Checking code quality
run: npm run lint