Skip to content

unit: coverage to 100% #47

unit: coverage to 100%

unit: coverage to 100% #47

Workflow file for this run

name: Node.js CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run lint
run: yarn lint
- name: Run tests
run: yarn test --silent