Skip to content

feat(#44): add CI workflow with GitHub Actions #1

feat(#44): add CI workflow with GitHub Actions

feat(#44): add CI workflow with GitHub Actions #1

Workflow file for this run

name: CI workflow
on: pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check TypeScript Types
run: npx turbo type-check
- name: Build
run: npm run build