Skip to content

chore: Add helptext #37

chore: Add helptext

chore: Add helptext #37

Workflow file for this run

name: Review
on:
pull_request
jobs:
bootstrap:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/environment
- name: Bootstrap Environment
run: devbox run bootstrap
build:
runs-on: ubuntu-latest
needs: bootstrap
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/environment
- name: Build
run: devbox run build
test:
runs-on: ubuntu-latest
needs: bootstrap
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/environment
- name: Test
run: devbox run test