[feat]100 Hasuraからデータを取って来て,変更前と変更後の値をconsoleに書き出す処理 #40
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
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 18.17.0を使用 | |
with: | |
node-version: 18.17.0 | |
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' |