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
33 changes: 33 additions & 0 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: PR Check

on:
pull_request:
branches:
- main

jobs:
build:
name: Build and Type Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3

- uses: pnpm/action-setup@v4
with:
version: 9

- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 20.5
cache: "pnpm"

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build library
run: pnpm build:lib

- name: Build d.ts files
run: pnpm build:lib:dts
Loading