Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@ jobs:
name: Build Library
runs-on: ubuntu-24.04
steps:
- name: Checkout Project
- name: Checkout project
uses: actions/checkout@v6.0.2

- name: Setup pnpm
uses: threeal/setup-pnpm-action@v1.0.0
with:
version: 10.33.4

- name: Install Dependencies
- name: Install dependencies
run: pnpm install

- name: Check Types
- name: Check types
run: pnpm tsc

- name: Test Library
- name: Test library
run: pnpm test

- name: Check Formatting
- name: Check formatting
run: pnpm prettier --check .

- name: Check Lint
- name: Check lint
run: pnpm eslint

- name: Package Library
- name: Package library
run: pnpm pack
Loading