Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

fix: upgrade @types/node from 18.19.4 to 18.19.5 #50

fix: upgrade @types/node from 18.19.4 to 18.19.5

fix: upgrade @types/node from 18.19.4 to 18.19.5 #50

Workflow file for this run

name: Lint and Format
on:
push:
pull_request:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v2
with:
node-version: "18.x"
- run: npm install
- run: npm run lint
- run: npm run prettier
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply linting and formatting changes
branch: ${{ github.head_ref }}