Skip to content

docs: fix inconsistencies #3; fix flatmap to make it mildly simpler #38

docs: fix inconsistencies #3; fix flatmap to make it mildly simpler

docs: fix inconsistencies #3; fix flatmap to make it mildly simpler #38

Workflow file for this run

name: main
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
build-unix:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest']
node-version: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci --ignore-scripts
npm audit fix
- name: Test
run: npm test