fix: navbar offset on modal open #2037
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: 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@v2 | |
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) | |
build: | |
needs: [prettier, rustywind, svg] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.1" | |
extensions: mbstring, dom, fileinfo, intl, gd, imagick, bcmath, soap, zip, sqlite, pcov | |
coverage: pcov | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.composer/cache/files | |
key: dependencies-composer-${{ hashFiles('composer.json') }} | |
- name: Install Composer dependencies | |
run: composer install --no-ansi --no-interaction --no-suggest --no-progress --prefer-dist --optimize-autoloader --ignore-platform-reqs | |
- name: Install | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn prod | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "chore: rebuild assets" | |
branch: ${{ github.head_ref }} |