Skip to content

Bump @types/node from 18.19.21 to 18.19.31 #357

Bump @types/node from 18.19.21 to 18.19.31

Bump @types/node from 18.19.21 to 18.19.31 #357

Workflow file for this run

name: Lint check
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "yarn"
- name: Run yarn install
run: yarn install
- name: copy .env-example to .env
run: cp .env-example .env
- name: Run yarn lint
run: yarn lint
- name: Check typescript
run: yarn check-typescript