Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

feat: add more validateSingleMetadataObject test cases #140

feat: add more validateSingleMetadataObject test cases

feat: add more validateSingleMetadataObject test cases #140

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['20.x']
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test --ci --coverage --maxWorkers=2
- name: Build
run: npm run build