Skip to content

Unflat json

Unflat json #13

Workflow file for this run

name: Unit Tests CI
on:
push:
branches: 'main'
pull_request:
branches: '**'
jobs:
check-file-changes:
uses: ./.github/workflows/check-changes.yml
build:
runs-on: ubuntu-latest
needs: check-file-changes
if: needs.check-file-changes.outputs.only_modified == 'false'
steps:
- uses: actions/checkout@v4
- name: use node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: npm
- run: npm ci
- run: npm run build --if-present
- run: npm test
- name: coveralls
uses: coverallsapp/github-action@v2