Skip to content

chore(deps-dev): bump tailwindcss from 3.4.6 to 3.4.9 #687

chore(deps-dev): bump tailwindcss from 3.4.6 to 3.4.9

chore(deps-dev): bump tailwindcss from 3.4.6 to 3.4.9 #687

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Setup pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
- name: Setup Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 20
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint -f @microsoft/eslint-formatter-sarif -o /tmp/lint.sarif
continue-on-error: true
- name: Upload results
uses: github/codeql-action/upload-sarif@3ab4101902695724f9365a384f86c1074d94e18c
with:
sarif_file: /tmp/lint.sarif
wait-for-processing: true