chore(deps): bump tailwind-merge from 3.4.0 to 3.5.0 #129
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: PR | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| concurrency: | |
| group: pr-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - run: make install | |
| - name: Lint | |
| run: make lint | |
| continue-on-error: true | |
| - name: TypeScript check | |
| run: | | |
| make prebuild | |
| npx tsc --noEmit | |
| continue-on-error: true | |
| - name: Run tests | |
| run: make test-ci | |
| - name: Build | |
| run: make build | |
| - name: Check manifest is up-to-date | |
| run: | | |
| if ! git diff --exit-code configs-manifest.json; then | |
| echo "❌ ERROR: configs-manifest.json is out of sync" | |
| echo "Run 'make prebuild' and commit the changes" | |
| exit 1 | |
| fi |