From 0561cbaeae52d6799220850c7cbba271b65d3d87 Mon Sep 17 00:00:00 2001 From: Piyal Basu Date: Tue, 27 Jun 2023 12:21:50 -0400 Subject: [PATCH] just enable test --- .github/workflows/buildTranslations.yml | 72 ++++++++++++------------- .github/workflows/test.yml | 28 +++++----- extension/src/popup/index.tsx | 2 +- 3 files changed, 51 insertions(+), 51 deletions(-) diff --git a/.github/workflows/buildTranslations.yml b/.github/workflows/buildTranslations.yml index 33e983019..3122e2c47 100644 --- a/.github/workflows/buildTranslations.yml +++ b/.github/workflows/buildTranslations.yml @@ -1,38 +1,38 @@ -name: Build translations +# name: Build translations -on: - pull_request: - paths: - - "extension/**/*" +# on: +# pull_request: +# paths: +# - "extension/**/*" -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - persist-credentials: false - fetch-depth: 0 - - uses: actions/setup-node@v1 - with: - node-version: "16.14.0" - - name: Run translation job - run: | - yarn && yarn build:freighter-api && yarn build:extension:translations - - name: Verify diff - id: verify_diff - run: | - git diff --quiet || echo "::set-output name=new_translations_exist::true" - - name: Commit files - if: steps.verify_diff.outputs.new_translations_exist == 'true' - run: | - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - git commit -m "Add translations" -a - - name: Push changes - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.head_ref }} - - name: test - run: yarn test:ci +# jobs: +# test: +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v2 +# with: +# persist-credentials: false +# fetch-depth: 0 +# - uses: actions/setup-node@v1 +# with: +# node-version: "16.14.0" +# - name: Run translation job +# run: | +# yarn && yarn build:freighter-api && yarn build:extension:translations +# - name: Verify diff +# id: verify_diff +# run: | +# git diff --quiet || echo "::set-output name=new_translations_exist::true" +# - name: Commit files +# if: steps.verify_diff.outputs.new_translations_exist == 'true' +# run: | +# git config --local user.email "action@github.com" +# git config --local user.name "GitHub Action" +# git commit -m "Add translations" -a +# - name: Push changes +# uses: ad-m/github-push-action@master +# with: +# github_token: ${{ secrets.GITHUB_TOKEN }} +# branch: ${{ github.head_ref }} +# - name: test +# run: yarn test:ci diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index baa0bf4f8..5ba67c842 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,14 +1,14 @@ -# name: test -# on: [pull_request] -# jobs: -# test: -# name: test -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v2 -# - uses: actions/setup-node@v2 -# with: -# node-version: 16.14.0 -# - run: yarn install -# - run: yarn build -# - run: yarn test:ci +name: test +on: [pull_request] +jobs: + test: + name: test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 16.14.0 + - run: yarn install + - run: yarn build + - run: yarn test:ci diff --git a/extension/src/popup/index.tsx b/extension/src/popup/index.tsx index b710f5af8..35dbf2fd2 100755 --- a/extension/src/popup/index.tsx +++ b/extension/src/popup/index.tsx @@ -6,7 +6,7 @@ import "popup/helpers/localizationConfig"; // Import global CSS from Stellar Design System import "@stellar/design-system/build/styles.min.css"; -console.log("tesst"); +console.log("test"); // eslint-disable-next-line react/jsx-filename-extension ReactDOM.render(, document.getElementById("root"));