Skip to content

feat: add basic github actions #1

feat: add basic github actions

feat: add basic github actions #1

Workflow file for this run

name: Pull Request Check
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Dependencies
run: |
corepack enable
pnpm install
- name: TypeScript Check
run: pnpm tsc --noEmit
- name: Biome Check
run: pnpm biome check --apply ./src