Skip to content

exclude tests from dist #87

exclude tests from dist

exclude tests from dist #87

Workflow file for this run

name: CI Pipeline
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.14.0, 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 20.x
uses: actions/setup-node@v1
with:
node-version: 20.x
- run: npm ci
- run: npm run tsc
- run: npm run buildcjs
- name: Use Node.js Version Under Test
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm run coverage