chore(deps-dev): bump @types/node from 20.14.11 to 22.7.8 #171
Workflow file for this run
This file contains hidden or 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: Build | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "21" | |
- name: Setup Pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: "8.15.1" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build docs | |
run: pnpm run docs:build | |
- name: Lint docs with prettier | |
run: pnpm run format:check |