Skip to content

fix: フォームの質問が表示できないのを修正 #19

fix: フォームの質問が表示できないのを修正

fix: フォームの質問が表示できないのを修正 #19

Workflow file for this run

name: CI
on:
push:
branches:
- main
- reImplements
pull_request:
jobs:
lint:
name: Lint with ESLint and Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get node version from Volta
id: get-node-version
uses: keita-hino/get-node-version-from-volta@main
- uses: actions/setup-node@v3
with:
node-version: ${{ steps.get-node-version.outputs.nodeVersion }}
cache: yarn
- name: Install dependencies
run: yarn install
- name: Run Prettier
run: yarn fmt
- name: Run ESLint
run: yarn lint