Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
permissions:
contents: read

env:
CI: true

jobs:
test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -47,8 +50,6 @@ jobs:
- name: Install dependencies
# if: steps.cache-tailwindcss.outputs.cache-hit != 'true'
run: npm install
env:
CI: true

- name: Build Tailwind CSS
run: npm run prepublishOnly
Expand All @@ -65,8 +66,6 @@ jobs:
- name: Install shared dependencies
if: steps.cache-integrations.outputs.cache-hit != 'true'
run: npm run install:integrations
env:
CI: true

- name: Test ${{ matrix.integration }}
run: npm test --prefix ./integrations/${{ matrix.integration }}
44 changes: 35 additions & 9 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
permissions:
contents: read

env:
CI: true

jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -40,17 +43,40 @@ jobs:
- name: Install dependencies
# if: steps.cache.outputs.cache-hit != 'true'
run: npm install
env:
CI: true

- name: Build Tailwind CSS
run: npm run swcify
env:
CI: true

- name: Test
run: |
ln -nfs `pwd` node_modules/tailwindcss # So that Prettier can use the local version
npm test
env:
CI: true
run: npm test

lint:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# cache: 'npm'
#
# - name: Use cached node_modules
# id: cache
# uses: actions/cache@v3
# with:
# path: node_modules
# key: nodeModules-${{ hashFiles('**/package-lock.json') }}-${{ matrix.node-version }}
# restore-keys: |
# nodeModules-

- name: Install dependencies
# if: steps.cache.outputs.cache-hit != 'true'
run: npm install

- name: Lint
run: npm run style
7 changes: 0 additions & 7 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,6 @@ jobs:
tag_name: ${{ env.TAG_NAME }}
body: |
${{ env.RELEASE_NOTES }}

* [Linux (arm64)](https://github.com/tailwindlabs/tailwindcss/releases/download/${{ env.TAG_NAME }}/tailwindcss-linux-arm64)
* [Linux (armv7)](https://github.com/tailwindlabs/tailwindcss/releases/download/${{ env.TAG_NAME }}/tailwindcss-linux-armv7)
* [Linux (x64)](https://github.com/tailwindlabs/tailwindcss/releases/download/${{ env.TAG_NAME }}/tailwindcss-linux-x64)
* [macOS (arm64)](https://github.com/tailwindlabs/tailwindcss/releases/download/${{ env.TAG_NAME }}/tailwindcss-macos-arm64)
* [macOS (x64)](https://github.com/tailwindlabs/tailwindcss/releases/download/${{ env.TAG_NAME }}/tailwindcss-macos-x64)
* [Windows (x64)](https://github.com/tailwindlabs/tailwindcss/releases/download/${{ env.TAG_NAME }}/tailwindcss-windows-x64.exe)
files: |
standalone-cli/dist/tailwindcss-linux-arm64
standalone-cli/dist/tailwindcss-linux-armv7
Expand Down
22 changes: 5 additions & 17 deletions .github/workflows/release-insiders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
permissions:
contents: read

env:
CI: true

jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -37,26 +40,12 @@ jobs:
- name: Install dependencies
# if: steps.cache.outputs.cache-hit != 'true'
run: npm install
env:
CI: true

- name: Link and build Tailwind CSS
run: |
npm run swcify
ln -nfs `pwd` node_modules/tailwindcss
env:
CI: true
- name: Build Tailwind CSS
run: npm run swcify

- name: Test
run: npm test
env:
CI: true

- name: Unlink Tailwind CSS (for prettier)
run: |
unlink node_modules/tailwindcss
env:
CI: true

- name: Resolve version
id: vars
Expand All @@ -69,7 +58,6 @@ jobs:
- name: Publish
run: npm publish --tag insiders
env:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Trigger Tailwind Play update
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
permissions:
contents: read

env:
CI: true

jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -37,13 +40,9 @@ jobs:
- name: Install dependencies
# if: steps.cache.outputs.cache-hit != 'true'
run: npm install
env:
CI: true

- name: Test
run: npm test
env:
CI: true

- name: Calculate environment variables
run: |
Expand All @@ -53,7 +52,6 @@ jobs:
- name: Publish
run: npm publish --tag ${{ env.RELEASE_CHANNEL }}
env:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Trigger Tailwind Play update
Expand Down
20 changes: 0 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"test": "jest",
"test:integrations": "npm run test --prefix ./integrations",
"install:integrations": "node scripts/install-integrations.js",
"posttest": "npm run style",
"generate:plugin-list": "node -r @swc/register scripts/create-plugin-list.js",
"generate:types": "node -r @swc/register scripts/generate-types.js",
"generate": "npm run generate:plugin-list && npm run generate:types",
Expand Down Expand Up @@ -57,7 +56,6 @@
"jest": "^28.1.3",
"jest-diff": "^28.1.3",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"rimraf": "^3.0.0",
"source-map-js": "^1.0.2"
},
Expand Down