Skip to content

[add] 名前変更ページの実装(#67) #37

[add] 名前変更ページの実装(#67)

[add] 名前変更ページの実装(#67) #37

Workflow file for this run

on:
pull_request:
branches:
- develop
paths:
- "frontend/**"
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3 # node.js 16を使用
with:
node-version: 16
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm install
working-directory: frontend
# - name: prettier format
# run: npm run format
# working-directory: frontend
- name: lint
run: npm run lint:fix
working-directory: frontend
# - uses: stefanzweifel/[email protected]
# with:
# branch: develop
# commit_message: formatted by workflow
# commit_options: '--no-verify'