Skip to content

chore(deps): update dependency @biomejs/biome to v1.8.3 #62

chore(deps): update dependency @biomejs/biome to v1.8.3

chore(deps): update dependency @biomejs/biome to v1.8.3 #62

Workflow file for this run

name: CI ⚙️
on:
push:
workflow_dispatch:
permissions:
pull-requests: write
contents: write
issues: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout 🧳
uses: actions/checkout@v4
- name: Setup PNPM ⚙️
uses: AkashRajpurohit/.github/.github/actions/setup-pnpm@main
with:
node_version: 20
pnpm_version: 8
- name: Install dependencies ⏬
run: pnpm install --no-frozen-lockfile
- name: Test 🔫
run: pnpm run test:coverage
- name: Report Coverage 📝
if: always() # Also generate the report if tests are failing
uses: davelosert/vitest-coverage-report-action@v2
# - name: Get Coverage for badge 🔢
# run: |
# COVERAGE="$(cat coverage/coverage-summary.json | jq -r '.total.lines.pct')"
# echo "COVERAGE=$(echo ${COVERAGE})" >> $GITHUB_ENV
# - name: Create coverage badge ✍🏽
# uses: schneegans/dynamic-badges-action@v1.6.0
# with:
# auth: ${{ secrets.GIST_SECRET }}
# gistID: <gist-id>
# filename: <file-name>.json
# label: Code Coverage
# message: ${{ env.COVERAGE }}
# color: green
# namedLogo: vitest
- name: Upload Test Results ⏫
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/