-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes recommended to get the CircleCI emblem to go green #384
base: master
Are you sure you want to change the base?
Conversation
I learned enough about CircleCI and codeceptjs to get the pipeline to work. It required a few more changes than I had expected, and some of those changes are in the SPA Quickstart Tests project. I'll put another PR in there. In the meantime, I'm running the tests from my fork. It now works correctly, but it doesn't use puppeteer anymore. It just uses playwright. I couldn't get puppeteer to configure correctly for operation with the chrome and firefox browsers. Here's the snapshot from CircleCI now: |
This pull request includes updates to the CI configuration, Dockerfile, server and API server files, and several React components within the
Sample-01
project. The changes aim to update dependencies, improve code readability, and enhance the UI.CI and Docker Updates:
.circleci/config.yml
to22.4.0
although I don't think I did it in the most efficient way and Docker version to20.10.24
. [1] [2]Sample-01/Dockerfile
to use build arguments for Node.js and Alpine versions, and added cleanup for APK cache. [1] [2]Server and API Server Changes:
Sample-01/api-server.js
andSample-01/server.js
. [1] [2]auth
middleware configuration inSample-01/api-server.js
to usetokenSigningAlg
instead ofalgorithms
.Dependency Updates:
Sample-01/package.json
, including@auth0/auth0-react
andexpress-oauth2-jwt-bearer
. Addedreact-json-view
and specified Yarn as the package manager. [1] [2]React Component Improvements:
Highlight
component withreact-json-view
for JSON rendering inExternalApi.js
andProfile.js
. [1] [2]className
inExternalApi.js
for React compatibility. [1] [2]npm run dev
toyarn run dev
inExternalApi.js
.Rationale:
These changes have to do with the CircleCI configuration file and the Dockerfile, not just the code itself. I am able to get CircleCi to run everything except the integration tests. Even without accepting changes to the source that I recommend, you might get a green CircleCI emblem just with the changes to those two configuration files.
I also updated the package.json file to get the newer versions of the Auth0 react and bearer packages. All of that should be sufficient to get up to the Run integration tests stage of the CircleCI pipeline. I don't yet have any familiarity with codecept, so I didn't even attempt to fix that.
In api_server.js, I just made some simple changes to avoid type confusion with the environment variables and fixed the third argument to the call to auth(). I also made the variables used in server.js always be strings as well. These changes were primarily to support work that isn't reflected here, since I am working on a Vite/TypeScript/Vitetest/ReactRouter7 variation of the example. These changes won't alter the behavior of the application, since the default value for the argument to auth() is being redundantly specified in either case.
The other changes I made were to get rid of the bespoke Highlight component and replace it with a component from npmjs. I did this to eliminate warnings related to the rendering of stringified JSON by the Highlight component.