Skip to content

prevent npm updates to tailwindcss v4.x.x, not compatible yet #521

prevent npm updates to tailwindcss v4.x.x, not compatible yet

prevent npm updates to tailwindcss v4.x.x, not compatible yet #521

Workflow file for this run

name: basic-ci
on:
- push
- pull_request
jobs:
ci:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bahmutov/npm-install@v1
with:
install-command: npm i --legacy-peer-deps
- name: ts
run: npm run ts:check
- name: compile
run: npm run compile
- name: check commonjs node compat
run: node ./dist/cjs/create.js
- name: lint
run: npm run lint
- name: test
run: npm run test
- name: prettier
run: npm run format:check