Skip to content

chore: prepare the repo for a stable release #186

chore: prepare the repo for a stable release

chore: prepare the repo for a stable release #186

Workflow file for this run

name: ci
on:
push:
branches:
- main
- next
pull_request:
branches:
- main
- next
jobs:
backport:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: denoland/setup-deno@v2
with:
deno-version: 2.x
- run: npm install --ignore-scripts
- run: npm run backport
fmt-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: denoland/setup-deno@v2
with:
deno-version: 2.x
- run: deno fmt --check
- run: deno lint
test:
runs-on: ${{ matrix.os }} # runs a test on Ubuntu, Windows and macOS
strategy:
matrix:
os: [macOS-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: denoland/setup-deno@v2
with:
deno-version: 2.x
- run: deno cache -I src/mod.ts
- run: deno task test
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: denoland/setup-deno@v2
with:
deno-version: 2.x
- run: deno task coverage
- uses: codecov/[email protected] # upload the report on Codecov
with:
file: ./coverage.lcov