Files
site-documentation/.gitea/workflows/test-build.yaml
Renovate Bot 4dbd2c579f
Some checks failed
test-build / build (pull_request) Failing after 3s
Update actions/checkout action to v5
2025-08-11 22:26:58 +00:00

38 lines
613 B
YAML

name: test-build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 10.x
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22.18.0
cache: pnpm
- name: Install Dependencies
run: pnpm install
# - name: Lint Code
# run: pnpm lint
- name: Build Project
run: pnpm build