Skip to content

Commit

Permalink
@tailwindcss/postcss (#230)
Browse files Browse the repository at this point in the history
also check that client still builds in ci
  • Loading branch information
jonhoo authored Feb 9, 2025
1 parent b0ead0d commit 97993ce
Show file tree
Hide file tree
Showing 4 changed files with 539 additions and 11 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/lint-client.yml → .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
pull_request:
paths:
- 'client/**'
- '.github/workflows/lint-client.yml'
- '.github/workflows/client.yml'
name: client
env:
NODE_VERSION: 18
jobs:
lint:
runs-on: ubuntu-latest
defaults:
defaults:
run:
working-directory: ./client
steps:
Expand All @@ -24,3 +24,18 @@ jobs:
cache-dependency-path: client/package-lock.json
- run: npm ci
- run: npm run lint
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
cache-dependency-path: client/package-lock.json
- run: npm ci
- run: npm run build
Loading

0 comments on commit 97993ce

Please sign in to comment.