diff --git a/.github/SECURITY.md b/.github/SECURITY.md new file mode 100644 index 0000000..bb3d45c --- /dev/null +++ b/.github/SECURITY.md @@ -0,0 +1 @@ +If you find a vulnerability, please contact robot@thunlights.com. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 480aa90..3ca1b3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,8 +19,15 @@ jobs: with: node-version: 22 + - uses: oven-sh/setup-bun@v2 + with: + bun-version: latest + - name: Install Dependencies - run: npm install + run: bun install + + - name: Build Check + run: npm run build - name: Lint Check run: npm run lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f6b1b22..a7a7df9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,8 +25,12 @@ jobs: with: node-version: 22 + - uses: oven-sh/setup-bun@v2 + with: + bun-version: latest + - name: Install Dependencies - run: npm install + run: bun install - name: Create Release Pull Request uses: changesets/action@v1