Skip to content

chore(deps-dev): bump tailwindcss from 3.4.19 to 4.3.3 #97

chore(deps-dev): bump tailwindcss from 3.4.19 to 4.3.3

chore(deps-dev): bump tailwindcss from 3.4.19 to 4.3.3 #97

Workflow file for this run

name: CI
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
permissions:
contents: read
jobs:
build:
name: Typecheck, lint, test, 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: Type check
run: npx tsc --noEmit
- name: Lint
run: npm run lint
- name: Run tests
run: npm test -- --ci
- name: Build
run: npm run build