Files
site-profile/.gitea/workflows/test-build.yaml
Alex Lebens d417fe92cd
Some checks failed
renovate / renovate (push) Has been cancelled
test-build / build (push) Has started running
Merge pull request 'Update actions/checkout action to v5' (#168) from renovate/actions-checkout-5.x into main
Reviewed-on: #168
2025-11-10 22:40:44 +00:00

38 lines
609 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@v6
with:
node-version: 22.21.1
cache: pnpm
- name: Install Dependencies
run: pnpm install
- name: Lint Code
run: pnpm lint
- name: Build Project
run: pnpm build