Skip to content

fix: migrate to eslint 9.5.0 #22

fix: migrate to eslint 9.5.0

fix: migrate to eslint 9.5.0 #22

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
pull_request:
branches:
- '*'
jobs:
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install node v18
uses: actions/setup-node@v2
with:
node-version: 18
- name: yarn install
run: yarn install
- name: run eslint
run: yarn lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install node v18
uses: actions/setup-node@v2
with:
node-version: 18
- name: yarn install
run: yarn install
- name: build
run: yarn build