Skip to content

disable history config by default #28

disable history config by default

disable history config by default #28

Workflow file for this run

name: CI
on: [ push, pull_request ]
env:
CI: true
jobs:
lint:
uses: haraka/.github/.github/workflows/lint.yml@master
test:
needs: get-lts
runs-on: ${{ matrix.os }}
services:
redis:
image: redis
ports:
- 6379:6379
strategy:
matrix:
os:
- ubuntu-latest
# - windows-latest (no redis yet)
node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
get-lts:
needs: lint
runs-on: ubuntu-latest
steps:
- id: get
uses: msimerson/node-lts-versions@v1
outputs:
active: ${{ steps.get.outputs.active }}
lts: ${{ steps.get.outputs.lts }}