Skip to content

Fix: Bump prettier from 3.8.0 to 3.8.1 #48

Fix: Bump prettier from 3.8.0 to 3.8.1

Fix: Bump prettier from 3.8.0 to 3.8.1 #48

Workflow file for this run

# Continuous Integration
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Run type checking
run: npm run typecheck
- name: Build web version
run: npm run build:web