Skip to content

fix: コードの表示を額縁風に #131

fix: コードの表示を額縁風に

fix: コードの表示を額縁風に #131

Workflow file for this run

name: Prettier & ESLint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: yarn install
- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: true
prettier: true
eslint_args: --ext .ts,.tsx ./src
prettier_args: --check ./src/