Merge pull request #709 from proactivebit/fix/CMGR-57085 #422
This file contains hidden or 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: Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 17 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Test | |
| run: npm test | |
| - name: End to End Test | |
| run: npm run e2e | |
| env: | |
| E2E_CLIENT_ID: ${{ secrets.E2E_CLIENT_ID }} | |
| E2E_CLIENT_SECRET: ${{ secrets.E2E_CLIENT_SECRET }} | |
| E2E_TA_EMAIL: ${{ secrets.E2E_TA_EMAIL }} | |
| E2E_IMS_ORG_ID: ${{ secrets.E2E_IMS_ORG_ID }} | |
| E2E_PRIVATE_KEY_B64: ${{ secrets.E2E_PRIVATE_KEY_B64 }} | |
| - name: Codecov | |
| uses: codecov/[email protected] | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }} | |
| HUSKY_DEBUG: '1' | |
| HUSKY: '0' | |
| run: npm run semantic-release |