Skip to content

Bump @types/node from 20.6.0 to 20.10.4 #529

Bump @types/node from 20.6.0 to 20.10.4

Bump @types/node from 20.6.0 to 20.10.4 #529

Workflow file for this run

name: TS formatting
on:
pull_request:
push:
branches:
- main
- dev
defaults:
run:
shell: bash
working-directory: ts
jobs:
formatting-check:
name: TS Prettier formatting check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Check Format
run: npm run format-check
lint:
name: TS Lint check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm clean-install --ignore-scripts
- name: Check Lint
run: npm run lint-check