Skip to content
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.

Don't do token exchange on HTTP HEAD requests #1242

Don't do token exchange on HTTP HEAD requests

Don't do token exchange on HTTP HEAD requests #1242

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
test:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
# reports general machine parameters
- run: node -p 'os.cpus()'
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install
run: yarn
- name: Typecheck
run: yarn typecheck
- name: Lint
run: yarn lint
- name: Test
run: yarn test