fix(oauth): return updated object value
key instead of complex patched object that causes crash
#3594
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: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
services: | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_DB: feathers | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_PORT: 5432 | |
POSTGRES_USER: postgres | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm i npm -g | |
- run: npm install -g codeclimate-test-reporter | |
- run: npm install | |
- run: npm test | |
env: | |
CI: true | |
TEST_DB: postgres | |
- run: | | |
if [ "$CODECLIMATE_REPO_TOKEN" != "" ]; then | |
codeclimate-test-reporter < coverage/lcov.info | |
fi | |
env: | |
CODECLIMATE_REPO_TOKEN: ${{ secrets.codeclimate }} |