Skip to content

Fix React Server Components RCE vulnerability #39

Fix React Server Components RCE vulnerability

Fix React Server Components RCE vulnerability #39

Workflow file for this run

name: biome
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Bun
uses: oven-sh/setup-bun@v2
with:
version: 1.3.2
- name: Cache Bun dependencies
uses: actions/cache@v4
with:
path: ~/.bun/install/cache
key: bun-cache-${{ runner.os }}-${{ hashFiles('bun.lock') }}
restore-keys: |
bun-cache-${{ runner.os }}-
- name: Install dependencies
run: bun install
- name: Setup Biome
uses: biomejs/setup-biome@v2
with:
version: 2.3.4
- name: Run Biome
run: biome ci --changed --since=origin/main