workflow: update to latest #15
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: | |
- "20" | |
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 "[email protected]" | |
- name: Checkout Commit | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: pnpm install | |
run: pnpm install | |
- name: Audit | |
run: pnpm audit | |
- name: Build | |
run: pnpm build --base=/grays/ | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
folder: dist |