Skip to content

Bump @types/node from 20.14.2 to 20.14.9 #287

Bump @types/node from 20.14.2 to 20.14.9

Bump @types/node from 20.14.2 to 20.14.9 #287

Workflow file for this run

name: Lint
on:
push:
pull_request:
types: [opened]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Setup
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Prepare (lint)
run: "yarn install"
- name: Check (lint)
run: "yarn lint"
build:
runs-on: ubuntu-latest
steps:
- name: Setup
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Prepare (build)
run: "yarn install"
- name: Check (build)
run: "yarn build"