mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
19 lines
407 B
YAML
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
|