Skip to content

feat: rework promise interface #17

feat: rework promise interface

feat: rework promise interface #17

Workflow file for this run

name: CI Build
on:
push:
branches: main
pull_request:
branches: main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
- run: npm ci
- run: npm run format:check
- run: npm run lint
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18
- 20
- latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test