Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix: change imports, remove deno.land from README #8

fix: change imports, remove deno.land from README

fix: change imports, remove deno.land from README #8

Workflow file for this run

name: ci
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: read
pull-requests: write
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- run: pnpm install --frozen-lockfile
# Biome
- uses: biomejs/setup-biome@v2
- run: biome ci .
# Build
- run: pnpm build
# Tests + coverage
- run: pnpm test
# Upload coverage for badge/commenting
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true