Update index.cjs #34
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: | |
- main | |
jobs: | |
build: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: 'Setup Node.js 20 LTS' | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: npm | |
- name: Run generate script | |
run: ./scripts/generate.sh | |
shell: bash | |
- name: Install dependencies | |
run: npm install | |
- name: Run Check | |
run: npm run check | |
- name: Run lint | |
run: npm run lint | |
- name: Run Build | |
run: npm run build | |
- name: Run Build GH-Page | |
run: npm run build:static | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build | |
publish_branch: gh-pages |