Skip to content

docs: update README.md #125

docs: update README.md

docs: update README.md #125

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.16.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Check types
run: yarn check-types
- name: Test
run: yarn test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
- name: Build
run: yarn build