✅ Migrate isObject tests to new system (and archive … #13
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: 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 |