fix: フォームの質問が表示できないのを修正 #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |