git: vscodfe手順の画像を表形式にして手順と紐付けしやすく修正 (#217) #102
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: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build-and-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| - name: Install Packages | |
| run: | | |
| npm i -f | |
| - name: Lint | |
| run: | | |
| npm run lint | |
| - name: Build | |
| run: | | |
| npm run build |