Feat: Custom userProfile for Oauth2 to support login with Keycloak; I… #350
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: medusa-plugin-sentry | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-verion: [16.x] | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.9.1 | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout | |
uses: actions/checkout@v2.3.5 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3.1.1 | |
with: | |
node-version: ${{ matrix.node-verion }} | |
- name: 'yarn install' | |
working-directory: ./packages/medusa-plugin-sentry | |
run: yarn | |
- name: 'run unit tests' | |
working-directory: ./packages/medusa-plugin-sentry | |
run: yarn run test |