Skip to content

workflow: update to latest #15

workflow: update to latest

workflow: update to latest #15

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