Skip to content

Smush the leaderboard (#28) #120

Smush the leaderboard (#28)

Smush the leaderboard (#28) #120

Workflow file for this run

name: Check Tailwind CSS
on:
push:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [ "20.x" ]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 9.4.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Check tailwind CSS was generated
run: pnpm --filter app exec tailwindcss -i ./src/input.css -o ./src/output.css && git diff-files --quiet