docs(pe): ๐๏ธ format #1325
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: 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 |