docs: CHANGELOG更新 yarnからnpmへ移行、各種アプデ対応(#69) #88
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: Develop Check | |
on: | |
push: | |
jobs: | |
lint-check: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.node-version' | |
cache: npm | |
cache-dependency-path: './package-lock.json' | |
- name: Clean Install Dependencies | |
run: npm ci | |
- name: ESLint & Prettier | |
run: npm run lint-check |