Skip to content

Bump @types/node from 20.5.9 to 20.8.3 #339

Bump @types/node from 20.5.9 to 20.8.3

Bump @types/node from 20.5.9 to 20.8.3 #339

Workflow file for this run

on:
push:
branches:
- main
pull_request:
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.yarn
key: yarn-${{ hashFiles('yarn.lock') }}
restore-keys: yarn-
- name: Install modules
run: yarn install
- name: ESLint
run: ./node_modules/.bin/eslint '**/*.ts' --fix
- name: Prettier
run: ./node_modules/.bin/prettier --check .