Skip to content

Dns resolution tests #130

Dns resolution tests

Dns resolution tests #130

Workflow file for this run

name: Testing
on: [ push, pull_request ]
jobs:
build:
continue-on-error: true
strategy:
matrix:
node: [ '18' ]
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
name: Node ${{ matrix.node }}-${{matrix.os}} tests
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run lint
- run: npm test