Skip to content

docs: 📝 Update README.md #20

docs: 📝 Update README.md

docs: 📝 Update README.md #20

Workflow file for this run

name: Build and test
on:
push:
branches:
- master
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
build-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Tests
run: npm run test:cov