Skip to content

chore(deps-dev): bump @tailwindcss/postcss from 4.3.2 to 4.3.3 #189

chore(deps-dev): bump @tailwindcss/postcss from 4.3.2 to 4.3.3

chore(deps-dev): bump @tailwindcss/postcss from 4.3.2 to 4.3.3 #189

Workflow file for this run

name: CI
on:
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build
- name: Smoke test built entrypoint
run: |
test -f dist/index.html
if grep -q 'src="/src/main.tsx"' dist/index.html; then
echo "Smoke test failed: dist/index.html still references /src/main.tsx"
exit 1
fi