Skip to content

Adjust integration test strategy following TypeScript port #1

Adjust integration test strategy following TypeScript port

Adjust integration test strategy following TypeScript port #1

Workflow file for this run

name: CI
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
test-seq:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
services:
seq:
image: datalust/seq:latest
ports:
- 5341:80
- 5342:5342
env:
ACCEPT_EULA: Y
SEQ_FIRSTRUN_NOAUTHENTICATION: True
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 build
- run: npm test
- run: cd example && npm link && node example.js