Skip to content

Merge pull request #55 from datalust/feat/integration-tweaks #3

Merge pull request #55 from datalust/feat/integration-tweaks

Merge pull request #55 from datalust/feat/integration-tweaks #3

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: npm run test:integration
- run: cd example && npm link && node example.js