docs: ๐ readme #37
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: Build & Deploy | |
on: | |
push: | |
# main ๅๆฏๆ push ๆถ่งฆๅ | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
deploy: | |
# ๆๅฎ่ๆๆบ็ฏๅข | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [lts/*] | |
os: [ubuntu-latest, windows-latest] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: https://registry.npmjs.org/ | |
- name: Install | |
run: pnpm install | |
- name: Build ๐ฆ | |
run: pnpm build | |
- name: Deploy ๐ | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
uses: JamesIves/github-pages-deploy-action@v4.6.0 | |
with: | |
branch: gh-pages | |
folder: dist |