chore: update JavaScript dependencies #75
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: UI | |
on: | |
pull_request: | |
paths: | |
- '**.css' | |
- '**.js' | |
- '**.php' | |
- '**.svg' | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Install | |
run: yarn install --frozen-lockfile | |
- name: Run prettier | |
run: yarn run prettier --write 'resources/**/*.{css,js,vue}' | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'style: resolve style guide violations' | |
branch: ${{ github.head_ref }} | |
rustywind: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Format | |
run: | | |
export PATH="$(yarn global bin):$PATH" | |
yarn global add rustywind | |
rustywind --write resources/views | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'style: resolve style guide violations' | |
branch: ${{ github.head_ref }} | |
svg: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Optimize SVGs | |
uses: ericcornelissen/svgo-action@v3 | |
id: svgo | |
with: | |
ignore: public/vendor/**/*.svg | |
repo-token: ${{ secrets.GH_TOKEN }} | |
svgo-config: .svgo.js | |
- name: Commit optimizations | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
if: ${{steps.svgo.outputs.DID_OPTIMIZE}} | |
with: | |
commit_message: Optimize ${{steps.svgo.outputs.OPTIMIZED_COUNT}} SVG(s) |