Skip to content

chore(deps-dev): bump lint-staged from 15.2.4 to 15.2.8 #159

chore(deps-dev): bump lint-staged from 15.2.4 to 15.2.8

chore(deps-dev): bump lint-staged from 15.2.4 to 15.2.8 #159

Workflow file for this run

name: Linting
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.1.2
run_install: false
- name: Use Node.js ${{ matrix.node-version }} 🏗
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Get pnpm store directory 📦
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache 📦
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml', '**/eslint.config.js') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies 👨🏻‍💻
run: pnpm install
- name: Lint 👀
run: pnpm run lint:fix
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 'fix: :art: fix styling by (eslint)'