Skip to content

Under the Hood section on homepage #30

Under the Hood section on homepage

Under the Hood section on homepage #30

Workflow file for this run

name: Pull Request on Branch Push
on:
workflow_dispatch:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
# ToDo: use devcontainers/[email protected] to reuse the devcontainer
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- run: pnpm i
- run: pnpm run lint
- run: pnpm run build