Use VitePress #4
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: | |
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 formatを実行するかしてください。ローカル環境の構築が難しい場合は、GitHub Actions から Format ワークフローを起動すると解決するかもしれません。 | |
npm run lint | |
- name: Build | |
run: | | |
# ドキュメントをビルドしてリンク切れ等をチェックします。 | |
npm run build |