V4 #117
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: | |
test_node_lts: | |
runs-on: ubuntu-latest | |
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 | |
- run: npm run coverage | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
test_node_other: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.14.0, 14.x, 16.x, 18.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 test |