diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 24da978..3809ae4 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -10,9 +10,17 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Setup Biome - uses: biomejs/setup-biome@v2 + # - name: Setup Biome + # uses: biomejs/setup-biome@v2 + # with: + # version: latest + # - name: Run Biome + # run: biome ci src + + - uses: actions/setup-node@v3 with: - version: latest + node-version: 20 + - name: Install Dependencies + run: npm install - name: Run Biome - run: biome ci src \ No newline at end of file + run: npm run lint \ No newline at end of file