jbielick/faktory_worker_node

View on GitHub
.github/workflows/build.yml

Summary

Maintainability
Test Coverage
name: CI

on:
  push:
  pull_request:

jobs:
  build:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        node-version: [14.x, 15.x, 16.x, 18.x]

    services:
      faktory:
        image: contribsys/faktory:1.6.1
        ports:
          - 7419:7419

    steps:
      - uses: actions/checkout@v2
      - name: Use Node.js ${{ matrix.node-version }}
        uses: actions/setup-node@v1
        with:
          node-version: ${{ matrix.node-version }}
      - run: npm install
      - run: npm run lint
      - run: npm run test