Skip to content

chore: readme up

chore: readme up #38

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: [18]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: node --version
- run: yarn --version
- run: yarn
- run: yarn build
- run: yarn test --coverage
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}