exclude tests from dist #87
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |