Skip to content

fixup! feat: drop support for node versions lower than 18 #46

fixup! feat: drop support for node versions lower than 18

fixup! feat: drop support for node versions lower than 18 #46

Workflow file for this run

name: Test
on: push
jobs:
build:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: git config --global user.email "you@example.com"
- run: git config --global user.name "Your Name"
- run: npm install --global npm@latest
- run: npm ci
- run: npm run build
- run: npm run cover