Skip to content

✅ Migrate isObject tests to new system (and archive … #13

✅ Migrate isObject tests to new system (and archive …

✅ Migrate isObject tests to new system (and archive … #13

name: Fix Typescript code style issues
on:
push:
paths:
- '.github/workflows/fix-ts-code-style-issues.yml'
- '**.js'
- '**.ts'
- '**.css'
- '**.scss'
- '**.sass'
- 'package.json'
- 'package-lock.json'
permissions:
contents: write
jobs:
ts-code-styling:
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Format scripts
run: npm run format:scripts
- name: Format styles
run: npm run format:styles
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Fix styling