Restructure README and improve skills editing guide #386
Workflow file for this run
This file contains hidden or 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: | |
| push: | |
| branches: [ main, develop ] | |
| pull_request: | |
| branches: [ main, develop ] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Set timezone | |
| run: | | |
| sudo timedatectl set-timezone Asia/Tokyo | |
| echo "TZ=Asia/Tokyo" >> $GITHUB_ENV | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Lint check | |
| run: npm run lint | |
| - name: Format check | |
| run: npm run format:check | |
| - name: Type check | |
| run: npm run build | |
| # TODO: Enable tests when test files are added | |
| # - name: Run tests | |
| # run: npm test |