schoolbox web extension :)
0
fork

Configure Feed

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

ci: add lint workflow

* close #301

willow 9af5fec4 043a8704

+29
+29
.github/workflows/lint.yml
··· 1 + name: Lint 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 eslint 29 + run: bun run lint