Skip to content

Convert to ESM and general overhaul #3

Convert to ESM and general overhaul

Convert to ESM and general overhaul #3

Workflow file for this run

# Scrypt.js GitHub Actions Node.js CI workflow
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
node-version: [ 'lts/*', current ]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test-node