diff --git a/.github/workflows/pull_request_code_quality.yml b/.github/workflows/pull_request_code_quality.yml index 461742b..c8d5298 100644 --- a/.github/workflows/pull_request_code_quality.yml +++ b/.github/workflows/pull_request_code_quality.yml @@ -1,4 +1,4 @@ -name: Code quality +name: Code Quality on: push: @@ -10,9 +10,25 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + + - name: Setup Node.js 20.x + uses: actions/setup-node@v4 + with: + node-version: 20.x + registry-url: "https://registry.npmjs.org" + + - name: Install yarn + run: | + npm i yarn -g + yarn install + - name: Setup Biome uses: biomejs/setup-biome@v2 with: version: latest + - name: Run Biome run: biome ci . + + - name: Run TypeScript Check + run: npx tsc --noEmit