chore(main): release tailwind-csstree 0.1.4 (#31) #58
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Node CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "lts/*" | |
| - name: npm install and build | |
| run: | | |
| npm ci | |
| npm run build --if-present | |
| - name: Lint | |
| run: npm run lint | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| CI: true | |
| strategy: | |
| matrix: | |
| os: [windows-latest, macOS-latest, ubuntu-latest] | |
| node: [18.x, 20.x, 22.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: npm install, build, and test | |
| run: | | |
| npm ci | |
| npm run build --if-present | |
| - name: Unit Tests | |
| run: npm test | |
| - name: JSR Publish Test | |
| run: npm run test:jsr |