Skip to content
This repository was archived by the owner on Nov 25, 2025. It is now read-only.

feat: extract typescript out into it's own folder #40

feat: extract typescript out into it's own folder

feat: extract typescript out into it's own folder #40

Workflow file for this run

name: PR Checks
on:
pull_request:
branches: [main]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
- name: Run linter
run: pnpm run lint:fix
- name: Run formatter
run: pnpm run format
- name: Check for changes
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "Code formatting or linting changes detected!"
git diff
exit 1
fi