Skip to content

ESLint 8.xの更新対応 #369

ESLint 8.xの更新対応

ESLint 8.xの更新対応 #369

Workflow file for this run

name: lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Lint (node.js 14 on ubuntu-latest)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.4.0
- name: Use node.js 14
uses: actions/setup-node@v3.6.0
with:
node-version: 14
- name: Install npm@v8
run: npm i -g npm@v8
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Check licenses
run: npm run jsgl
- name: Run lints
run: npm run lint