[Dependabot]: Bump tailwindcss from 3.4.17 to 4.1.5 #780
Workflow file for this run
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: 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 |