Skip to content

docs(pe): ๐Ÿ“š๏ธ format #1325

docs(pe): ๐Ÿ“š๏ธ format

docs(pe): ๐Ÿ“š๏ธ format #1325

Workflow file for this run

name: Node CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
GIT_USER: ${{ secrets.GIT_USER }}
GIT_PASS: ${{ secrets.GIT_PASS }}
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@master
- uses: pnpm/action-setup@master
with:
version: 9
- name: SETUP_NODE_${{ matrix.node-version }}
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node-version }}
- name: BEFORE_SCRIPT
run: |
git config --global user.name 'gracefullight'
git config --global user.email '[email protected]'
- name: INSTALL_PACKAGES
run: pnpm install --frozen-lockfile
- name: BUILD
run: pnpm run build
- name: DEPLOY
run: pnpm run deploy