chore: update dependencies to latest version #12
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: Deploy to github pages | |
on: [push, pull_request] | |
permissions: | |
contents: write # to fetch code (actions/checkout) | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- "16" | |
platform: | |
- ubuntu-latest | |
name: "${{matrix.platform}} / Node.js ${{ matrix.node }}" | |
runs-on: ${{matrix.platform}} | |
steps: | |
- name: Configure Git | |
run: | | |
git config --global core.autocrlf false | |
git config --global user.name "BaboonKing" | |
git config --global user.email "changfan.xu.up@qq.com" | |
- name: Checkout Commit | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2.2.4 | |
with: | |
version: next-7 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: Install npm@7 | |
run: npm add --global npm@7 | |
- name: pnpm install | |
run: pnpm install | |
- name: Audit | |
run: pnpm audit | |
- name: Build | |
run: pnpm build --base=/grays/ | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: dist |