From a61aed60131a385b18a50bf791bd40f8ebad344d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Colladon?= Date: Tue, 23 Apr 2024 16:47:35 +0200 Subject: [PATCH] test: perf fix --- .github/workflows/on-main-push.yml | 51 ++---------------------------- 1 file changed, 3 insertions(+), 48 deletions(-) diff --git a/.github/workflows/on-main-push.yml b/.github/workflows/on-main-push.yml index 60707ca0..ea4279c1 100644 --- a/.github/workflows/on-main-push.yml +++ b/.github/workflows/on-main-push.yml @@ -10,54 +10,7 @@ on: - "img/**" jobs: - build: - uses: ./.github/workflows/reusable-build.yml - secrets: inherit - - prepare-release: - needs: [build] - runs-on: ubuntu-latest - outputs: - release_created: ${{ steps.release.outputs.release_created }} - version: ${{ steps.release.outputs.version }} - steps: - - uses: google-github-actions/release-please-action@v4 - id: release - with: - token: ${{ secrets.RELEASE_PAT }} - release-type: node - - release: - needs: [prepare-release] - runs-on: ubuntu-latest - if: needs.prepare-release.outputs.release_created == 'true' - steps: - - name: Checkout sources - uses: actions/checkout@v4 - - - name: Setup node - uses: actions/setup-node@v4 - with: - node-version: 18 - registry-url: 'https://registry.npmjs.org' - - - name: Setup dependencies, cache and install - uses: ./.github/actions/install - - - name: Publish to npm - run: yarn npm publish --access public --tag latest-rc - env: - YARN_NPM_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - - test-release: - uses: ./.github/workflows/run-e2e-tests.yml - needs: [prepare-release, release] - with: - channel: ${{ needs.prepare-release.outputs.version }} - secrets: inherit - perf: - needs: [prepare-release] runs-on: ubuntu-latest if: needs.prepare-release.outputs.release_created != 'true' steps: @@ -102,7 +55,9 @@ jobs: path: ./e2e - name: Run benchmark - run: yarn test:perf + run: | + yarn test:perf + git reset --hard - name: Store benchmark result uses: benchmark-action/github-action-benchmark@v1