Skip to content

ファイルを記録する用のページを作成しました #3

ファイルを記録する用のページを作成しました

ファイルを記録する用のページを作成しました #3

Workflow file for this run

name: ci
on: pull_request
jobs:
code-style-check:
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- 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)