Skip to content

chore: bump actions/checkout from 5.0.0 to 6.0.1 #1452

chore: bump actions/checkout from 5.0.0 to 6.0.1

chore: bump actions/checkout from 5.0.0 to 6.0.1 #1452

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
build-library:
name: Build Library
runs-on: ubuntu-24.04
steps:
- name: Checkout Project
uses: actions/checkout@v6.0.1
- name: Setup pnpm
uses: threeal/setup-pnpm-action@v1.0.0
- name: Install Dependencies
run: pnpm install
- name: Check Types
run: pnpm tsc
- name: Test Libarry
run: pnpm test
- name: Check Formatting
run: pnpm prettier --check .
- name: Check Lint
run: pnpm eslint
- name: Package Libarry
run: pnpm pack