Skip to content

package lock

package lock #146

Workflow file for this run

name: CI Pipeline
on: [push, pull_request]
jobs:
test_node_lts:
runs-on: ubuntu-latest
services:
httpbin:
image: kennethreitz/httpbin
ports:
- 3000:80
redis:
image: redis
ports:
- 6379:6379
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, 22.x]
services:
httpbin:
image: kennethreitz/httpbin
ports:
- 3000:80
redis:
image: redis
ports:
- 6379:6379
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