chore: ファイル記録トランザクションにブロックチェーンに記録されている最新のトランザクションを含めるようにしました #8
Workflow file for this run
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: pull_request | |
jobs: | |
code-style-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# 参考: https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#use-private-packages | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm ci | |
- name: Run npm run fix | |
run: npm run fix | |
- name: Check for changes | |
run: | | |
git diff --exit-code || (echo "Code style error" && exit 1) |