Skip to content

Commit 0d41458

Browse files
committed
fix: Revert "fix: tailwind css v3 to v4 migration"
* Tailwind V4 aims to newer browser (> 2023) This reverts commit d206347.
1 parent 650fe64 commit 0d41458

18 files changed

+1156
-2254
lines changed

.github/workflows/main.yml

+58-31
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,63 @@ env:
55
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
66

77
on:
8-
push:
9-
branches: main
8+
push:
9+
branches: main
1010

1111
jobs:
12-
build:
13-
runs-on: ubuntu-latest
14-
steps:
15-
# Checkout
16-
- uses: actions/checkout@v4
17-
18-
# Run tests
19-
- name: Get project's node version
20-
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
21-
id: nvm
22-
23-
- name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }}
24-
uses: actions/setup-node@v4
25-
with:
26-
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
27-
cache: 'npm'
28-
29-
- run: npm ci
30-
- run: npm test
31-
32-
# Deploy to Vercel
33-
- name: Install Vercel CLI
34-
run: npm install --global vercel@latest
35-
36-
- name: Build Project Artifacts
37-
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} --yes
38-
39-
- name: Deploy Project Artifacts to Vercel
40-
run: vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }} --yes
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
# Checkout
16+
- uses: actions/checkout@v4
17+
18+
# Run tests
19+
- name: Get project's node version
20+
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
21+
id: nvm
22+
23+
- name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }}
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
27+
cache: 'npm'
28+
29+
- run: npm ci
30+
- run: npm test
31+
32+
# Deploy to Vercel (production)
33+
- name: Install Vercel CLI (production)
34+
if: ${{ !env.ACT }}
35+
run: npm install --global vercel@latest
36+
37+
- name: Pull Vercel Environment Information (production)
38+
if: ${{ !env.ACT }}
39+
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
40+
41+
- name: Build Project Artifacts (production)
42+
if: ${{ !env.ACT }}
43+
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} --yes
44+
45+
- name: Deploy Project Artifacts to Vercel (production)
46+
if: ${{ !env.ACT }}
47+
run: vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }} --yes
48+
49+
############################################
50+
# It detects if you are running act locally
51+
# Deploy to Vercel as a preview only
52+
############################################
53+
- name: Install Vercel CLI (preview mode)
54+
if: ${{ env.ACT }}
55+
run: npm install --global vercel@latest
56+
57+
- name: Pull Vercel Environment Information (preview mode)
58+
if: ${{ env.ACT }}
59+
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
60+
61+
- name: Build Project Artifacts (preview mode)
62+
if: ${{ env.ACT }}
63+
run: vercel build --token=${{ secrets.VERCEL_TOKEN }} --yes
64+
65+
- name: Deploy Project Artifacts to Vercel (preview mode)
66+
if: ${{ env.ACT }}
67+
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} --yes

knip.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"ignoreDependencies": [
33
"@eslint/eslintrc",
4+
"@tailwindcss/postcss",
45
"postcss-load-config",
56
"eslint-config-next",
67
"eslint-import-resolver-typescript"

0 commit comments

Comments
 (0)