Skip to content

feat: support bearer token credentials request #133

feat: support bearer token credentials request

feat: support bearer token credentials request #133

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
defaults:
run:
shell: bash
working-directory: ts
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test-cov
- uses: codecov/codecov-action@v4
with:
flags: typescript # optional
token: ${{ secrets.CODECOV_TOKEN }}