Skip to content

chore(deps-dev): bump tailwindcss from 4.0.0-alpha.16 to 4.0.0-alpha.26 #19

chore(deps-dev): bump tailwindcss from 4.0.0-alpha.16 to 4.0.0-alpha.26

chore(deps-dev): bump tailwindcss from 4.0.0-alpha.16 to 4.0.0-alpha.26 #19

Workflow file for this run

name: 🚀 Release (preview)
on:
push:
branches: [main]
tags:
- "!**"
pull_request:
branches: [main]
jobs:
approved:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: ⎔ Enable corepack
run: corepack enable
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: 🟧 Install dependencies
run: pnpm install --recursive --frozen-lockfile --strict-peer-dependencies
- name: 🔐 Setup npm auth
run: |
echo "registry=https://registry.npmjs.org" >> ~/.npmrc
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc
- name: 🟧 Set publish-branch to current branch
run: |
echo "publish-branch=$(git branch --show-current)" >> ~/.npmrc
- name: 🚀 Publish PR
run: pkg-pr-new publish --compact './packages/*' --template './examples/*'