feat: add fedi mod injections to api #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull Request CI | |
| on: pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: oven-sh/setup-bun@v1 | |
| - name: Install Dependencies | |
| run: bun i | |
| - name: Check code style | |
| run: bun format:check | |
| - name: Lint | |
| run: bun lint | |
| - name: Build | |
| run: bun run build |