Skip to content

Bump @types/node from 22.10.1 to 22.10.2 (#25) #79

Bump @types/node from 22.10.1 to 22.10.2 (#25)

Bump @types/node from 22.10.1 to 22.10.2 (#25) #79

Workflow file for this run

name: Prettier
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
prettier:
name: Check for formatting issues
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: NPM Install
run: npm install
- name: Prettier check
run: npm run format:check