Skip to content

chore: Configure Renovate #38

chore: Configure Renovate

chore: Configure Renovate #38

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
node: ['*', '14', '12']
hapi: ['20', '19', '18']
runs-on: ${{ matrix.os }}-latest
name: ${{ matrix.os }} node@${{ matrix.node }} hapi@${{ matrix.hapi }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: install
run: npm install
- name: install hapi
run: npm install @hapi/hapi@${{ matrix.hapi }}
- name: test
run: npm test