fix: return error if missing session or missing custom auth header #1529
Workflow file for this run
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 | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- next | |
- rc | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test / OS ${{ matrix.os }} / Node ${{ matrix.node }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: ['18', '20'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Run tests | |
run: | | |
npm ci | |
npm t |