Skip to content

chore(deps): bump tailwindcss from 3.4.7 to 3.4.13 #613

chore(deps): bump tailwindcss from 3.4.7 to 3.4.13

chore(deps): bump tailwindcss from 3.4.7 to 3.4.13 #613

Workflow file for this run

name: Build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '20' ]
name: Build on NodeJS ${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup NodeJS ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test:ci
- name: Build
run: npm run build