Skip to content

Commit

Permalink
add tsc for TS type checkinh
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuvssut committed Dec 16, 2024
1 parent cb870da commit 2c0842e
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/pull_request_code_quality.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Code quality
name: Code Quality

on:
push:
Expand All @@ -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

0 comments on commit 2c0842e

Please sign in to comment.