this repo has no description
1
fork

Configure Feed

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

๐Ÿ’š Add github CI to see if it builds there

+30
+1
.bun-version
··· 1 + 1.2.22
+29
.github/workflows/build.yml
··· 1 + name: Verify that it builds 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + pull_request: 8 + branches: 9 + - main 10 + 11 + jobs: 12 + build: 13 + runs-on: ubuntu-latest 14 + strategy: 15 + matrix: 16 + lang: [en, fr] 17 + steps: 18 + - uses: actions/checkout@v5 19 + - uses: oven-sh/setup-bun@v2 20 + with: 21 + bun-version-file: ".bun-version" 22 + 23 + - name: Install dependencies 24 + run: bun install 25 + 26 + - name: Build the project 27 + run: bun run build 28 + env: 29 + LANG: ${{ matrix.lang }}