schoolbox web extension :)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: add check workflow

* #301

willow 043a8704 ed464d2e

+29
+29
.github/workflows/check.yml
··· 1 + name: Check 2 + 3 + on: 4 + workflow_dispatch: 5 + push: 6 + pull_request: 7 + 8 + permissions: 9 + contents: read 10 + pull-requests: read 11 + 12 + jobs: 13 + build: 14 + runs-on: ubuntu-latest 15 + steps: 16 + - name: Checkout 17 + uses: actions/checkout@v4 18 + with: 19 + fetch-depth: 0 20 + submodules: "recursive" 21 + 22 + - name: Setup bun 23 + uses: oven-sh/setup-bun@v2 24 + 25 + - name: Install dependencies 26 + run: bun install --frozen-lockfile 27 + 28 + - name: Run checks 29 + run: bun run check