Skip to content

Merge pull request #2 from gkamradt/codex/add--use-the-vibe-typer--te… #18

Merge pull request #2 from gkamradt/codex/add--use-the-vibe-typer--te…

Merge pull request #2 from gkamradt/codex/add--use-the-vibe-typer--te… #18

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Lint code
run: npm run lint --if-present
- name: Run tests
run: npm test -- --run # Add --run for Vitest to exit after tests
- name: Build project
run: npm run build