Skip to content

fix: allow users to force override the custom grant prefix #460

fix: allow users to force override the custom grant prefix

fix: allow users to force override the custom grant prefix #460

name: build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x ]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: "9.x"
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- run: pnpm install --frozen-lockfile --production false
- run: pnpm test:cov
env:
CI: true
DOMAIN: localhost
JWT_SECRET: testing-access-token-secret
- name: report coverage to code climate
# code coverage report will only run on the main branch and not on pull request
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter format-coverage -t lcov coverage/lcov.info
./cc-test-reporter upload-coverage
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}