-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from TrellisCommerce/feature/TECH-477
Feature/tech 477
- Loading branch information
Showing
7 changed files
with
1,785 additions
and
647 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,24 @@ | ||
name: CI | ||
on: [push] | ||
jobs: | ||
tailwindcss-update: | ||
name: Generate TailwindCSS | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Generate TailwindCSS | ||
uses: ZoeyVid/tailwindcss-update@main | ||
with: | ||
input: assets/app-tailwind.css | ||
output: assets/app.css | ||
params: "" | ||
- name: Commit & Push | ||
run: | | ||
git config user.name "GitHub" | ||
git config user.email "[email protected]" | ||
git diff-index --quiet HEAD || git commit -m "ci: tailwindcss-update" | ||
git push | ||
lhci: | ||
name: Lighthouse | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
git update-index --skip-worktree assets/app.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.