Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Drop support for Node 16 and 17 #43

Drop support for Node 16 and 17

Drop support for Node 16 and 17 #43

Workflow file for this run

name: Deno CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Run deno test
run: |
deno task test
deno task cov > coverage.lcov
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.lcov
flags: unittests