Skip to content

Housekeeping

Housekeeping #72

Workflow file for this run

name: CI Pipeline
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 21.x]
services:
httpbin:
image: kennethreitz/httpbin
ports:
- 3000:80
env:
HTTP_BIN_BASE_URL: http://localhost:3000
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run coverage