ai/.github/workflows/ci.yml
2022-08-10 16:58:29 +09:00

19 lines
407 B
YAML

name: CI
on:
push:
branches-ignore:
- main
jobs:
ESLint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: ci
run: yarn install --immutable --immutable-cache --check-cache
- name: ESLint
run: yarn lint