Skip to content

Bump eslint from 8.56.0 to 8.57.0 #149

Bump eslint from 8.56.0 to 8.57.0

Bump eslint from 8.56.0 to 8.57.0 #149

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"