refactor: new admin user edit ui #41
Workflow file for this run
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
name: Auto Minify CSS/JS file | |
on: | |
push: | |
paths: | |
- 'public/assets/css/**' | |
- 'public/assets/js/**' | |
- 'public/theme/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Auto minify tabler theme CSS file | |
uses: nizarmah/auto-minify@v3 | |
with: | |
directory: 'public/theme/tabler/css' | |
- name: Auto minify tabler theme JS file | |
uses: nizarmah/auto-minify@v3 | |
with: | |
directory: 'public/theme/tabler/js' | |
- name: Auto minify asset CSS file | |
uses: nizarmah/auto-minify@v3 | |
with: | |
directory: 'public/assets/css' | |
- name: Auto minify asset JS file | |
uses: nizarmah/auto-minify@v3 | |
with: | |
directory: 'public/assets/js' | |
- name: Auto committing minified files | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
repository: 'public' | |
commit_message: "chore: auto minified theme CSS/JS files" |