Skip to content

Store NPM access token in NODE_AUTH_TOKEN environment variable #21

Store NPM access token in NODE_AUTH_TOKEN environment variable

Store NPM access token in NODE_AUTH_TOKEN environment variable #21

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
- run: npm ci
- run: make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}