Skip to content

Support ORCID member API for authentication #366

Support ORCID member API for authentication

Support ORCID member API for authentication #366

Workflow file for this run

name: TypeScript tests and coverage
on:
push: { branches: [master] }
pull_request: { branches: [master] }
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- run: yarn test --coverage
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}