Skip to content

feat: make zones overrides and scoped async resources #37

feat: make zones overrides and scoped async resources

feat: make zones overrides and scoped async resources #37

Workflow file for this run

name: coverage
on: [push]
env:
CI: true
jobs:
run:
name: node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [20]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install -g yarn
- run: yarn
- run: yarn run test:all --coverage
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}