24 use non block asnyc to default #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: testing | |
on: | |
push: | |
paths: | |
- "**.ts" | |
- "**.js" | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- "**" | |
paths: | |
- "**.ts" | |
- "**.js" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
deno-version: ["v1.x"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: ${{ matrix.node-version }} | |
- run: deno lint && deno test --parallel --coverage=.coverage && deno coverage .coverage --lcov cov > cov.lcov | |
- name: Upload coverage to Coveralls.io | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: cov.lcov |