Skip to content

build(deps): bump tailwindcss from 3.4.17 to 4.0.3 #72

build(deps): bump tailwindcss from 3.4.17 to 4.0.3

build(deps): bump tailwindcss from 3.4.17 to 4.0.3 #72

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get Node version from package.json volta.node
id: get-node-version
run: echo "::set-output name=node_version::$(jq -r '.volta.node' package.json)"
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ steps.get-node-version.outputs.node_version || 22 }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
# Optional: Add a test step if you have tests
# - name: Run tests
# run: npm test