Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

ESLintを設定

ESLintを設定 #2

Workflow file for this run

name: CI Lint and Format
on:
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Lint and Format
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
cache: yarn
- name: Install dependencies
run: yarn install
- name: format
run: yarn format:ci
- name: lint
run: yarn lint:ci