Skip to content

fix: Gitlab resolver #4

fix: Gitlab resolver

fix: Gitlab resolver #4

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
node-version: ['10.1', 10.x, '12.1', 12.x, '14.1', 14.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Update npm
run: npm i -g npm
- name: Install dependencies
run: npm ci
- name: Run Tap tests
run: npm test