diff --git a/.github/actions/analytics-uploader-wrapper/action.yaml b/.github/actions/analytics-uploader-wrapper/action.yaml index ebb6d5ce2..a3bc8e686 100644 --- a/.github/actions/analytics-uploader-wrapper/action.yaml +++ b/.github/actions/analytics-uploader-wrapper/action.yaml @@ -27,46 +27,6 @@ inputs: runs: using: composite steps: - - name: Upload test results with CLI version ${{ inputs.cli-version }} to prod - if: "${{ inputs.cli-version != '' }}" - continue-on-error: true - uses: trunk-io/analytics-uploader@main - with: - org-slug: trunk - token: ${{ inputs.token-prod }} - cli-version: ${{ inputs.cli-version }} - junit-paths: ${{ inputs.junit-paths }} - run: ${{ inputs.run }} - quarantine: false - - - name: Upload test results with CLI version ${{ inputs.cli-version }} to staging - if: "${{ inputs.cli-version != '' }}" - continue-on-error: true - uses: trunk-io/analytics-uploader@main - with: - org-slug: trunk-staging-org - token: ${{ inputs.token-staging }} - cli-version: ${{ inputs.cli-version }} - junit-paths: ${{ inputs.junit-paths }} - run: ${{ inputs.run }} - quarantine: true - env: - TRUNK_PUBLIC_API_ADDRESS: https://api.trunk-staging.io - - - name: Upload test results with CLI version ${{ inputs.cli-version }} to dev - if: "${{ inputs.cli-version != '' }}" - continue-on-error: true - uses: trunk-io/analytics-uploader@main - with: - org-slug: trunk-io - token: ${{ inputs.token-dev }} - cli-version: ${{ inputs.cli-version }} - junit-paths: ${{ inputs.junit-paths }} - run: ${{ inputs.run }} - quarantine: true - env: - TRUNK_PUBLIC_API_ADDRESS: https://api.dev.trunk-staging.io/ - - name: Upload test results with CLI version ${{ inputs.cli-version }} to dev2 if: "${{ inputs.cli-version != '' }}" continue-on-error: true @@ -81,43 +41,6 @@ runs: env: TRUNK_PUBLIC_API_ADDRESS: https://api.dev2.trunk-staging.io/ - - name: Upload test results with default CLI version to prod - if: "${{ inputs.cli-version == '' }}" - continue-on-error: true - uses: trunk-io/analytics-uploader@main - with: - org-slug: trunk - token: ${{ inputs.token-prod }} - junit-paths: ${{ inputs.junit-paths }} - run: ${{ inputs.run }} - quarantine: false - - - name: Upload test results with default CLI version to staging - if: "${{ inputs.cli-version == '' }}" - continue-on-error: true - uses: trunk-io/analytics-uploader@main - with: - org-slug: trunk-staging-org - token: ${{ inputs.token-staging }} - junit-paths: ${{ inputs.junit-paths }} - run: ${{ inputs.run }} - quarantine: true - env: - TRUNK_PUBLIC_API_ADDRESS: https://api.trunk-staging.io - - - name: Upload test results with default CLI version to dev - if: "${{ inputs.cli-version == '' }}" - continue-on-error: true - uses: trunk-io/analytics-uploader@main - with: - org-slug: trunk-io - token: ${{ inputs.token-dev }} - junit-paths: ${{ inputs.junit-paths }} - run: ${{ inputs.run }} - quarantine: true - env: - TRUNK_PUBLIC_API_ADDRESS: https://api.dev.trunk-staging.io - - name: Upload test results with default CLI version to dev2 if: "${{ inputs.cli-version == '' }}" uses: trunk-io/analytics-uploader@main diff --git a/javascript/tests/jest/__tests__/jest.js b/javascript/tests/jest/__tests__/jest.js index 850947d12..7c2499bd2 100644 --- a/javascript/tests/jest/__tests__/jest.js +++ b/javascript/tests/jest/__tests__/jest.js @@ -1,6 +1,6 @@ const moment = require("moment"); -describe("Jest - Day of the Week Tests", () => { +describe("🤨 Jest - Day of the Week Tests", () => { test("today is Mon || Tues || Wed", () => { const today = moment().format("dddd"); expect(["Monday", "Tuesday", "Wednesday"]).toContain(today);