From 7d7747963e6c8cba3caea3d4962ee9b859b0fc47 Mon Sep 17 00:00:00 2001 From: Fabio Rigamonti <73019897+fabiorigam@users.noreply.github.com> Date: Fri, 27 Dec 2024 10:33:44 +0100 Subject: [PATCH 1/2] chore: update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e25283..1f24d32 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@
vechain-dapp-kit
super-dapp-kit
A TypeScript library that facilitates seamless interaction between VeChain wallets.
From a20fdd0b5e57f9da978fb6c97f1786010cf45bbe Mon Sep 17 00:00:00 2001 From: Fabio Rigamonti <73019897+fabiorigam@users.noreply.github.com> Date: Fri, 27 Dec 2024 10:56:54 +0100 Subject: [PATCH 2/2] fix: remove e2e tests --- .github/workflows/test-e2e.yaml | 42 --------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/test-e2e.yaml diff --git a/.github/workflows/test-e2e.yaml b/.github/workflows/test-e2e.yaml deleted file mode 100644 index d415803..0000000 --- a/.github/workflows/test-e2e.yaml +++ /dev/null @@ -1,42 +0,0 @@ -name: E2E Tests - -on: - push: - branches: [main] - pull_request: - branches: [main] - -concurrency: - group: ${{ github.head_ref || github.ref_name }}-e2e-test - cancel-in-progress: true - -jobs: - e2e-tests: - runs-on: ubuntu-latest - name: E2E Tests - - steps: - - name: Install Stable Chrome - run: | - wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - - sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' - sudo apt-get update - sudo apt-get install google-chrome-stable - - - name: Install Stable chromedriver - uses: nanasess/setup-chromedriver@v2 - - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version-file: .nvmrc - cache: 'yarn' - - - name: Install - run: yarn install:all - - - name: Run E2E Tests - run: yarn test:e2e:ci