Skip to content

Fix CI: use npm install to resolve Tailwind native bindings #6

Fix CI: use npm install to resolve Tailwind native bindings

Fix CI: use npm install to resolve Tailwind native bindings #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: |
rm -rf node_modules
npm install
- name: Type check
run: npm run check
- name: Build
run: npm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
retention-days: 7