Skip to content

[Dependabot]: Bump tailwindcss from 3.4.17 to 4.1.5 #780

[Dependabot]: Bump tailwindcss from 3.4.17 to 4.1.5

[Dependabot]: Bump tailwindcss from 3.4.17 to 4.1.5 #780

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
types: [ opened, synchronize, reopened, ready_for_review ]
jobs:
build_and_test:
if: ${{ !github.event.pull_request.draft }}
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Prettier check
run: yarn run prettier-check
- name: Run tests
run: yarn test
- name: Check if dependencies changed
uses: dorny/paths-filter@v3
id: changes
with:
filters: |
dependencies:
- 'yarn.json'
- if: steps.changes.outputs.dependencies == 'true'
name: Build package
run: yarn run package