From 7da7ababc9b2c51928b27fd45f85d3277ee7c883 Mon Sep 17 00:00:00 2001 From: Dmytro Stebaiev Date: Thu, 19 Sep 2024 19:30:26 +0300 Subject: [PATCH] Fix contracts testing github actions workflow --- .github/workflows/main.yml | 22 ++++++++-------------- .github/workflows/publish.yml | 2 +- 2 files changed, 9 insertions(+), 15 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7b4ebc403..51a9979ba 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: Build and test +name: test on: push: @@ -19,23 +19,20 @@ jobs: test-contracts: runs-on: ubuntu-latest - defaults: - run: - working-directory: proxy - steps: - uses: actions/checkout@v4 with: submodules: true - name: Install PYTHON - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ env.PYTHON_VERSION }} cache: 'pip' + cache-dependency-path: scripts/requirements.txt - name: Install NODE JS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} cache: 'yarn' @@ -80,23 +77,20 @@ jobs: test-predeployed: runs-on: ubuntu-latest - defaults: - run: - working-directory: proxy - steps: - uses: actions/checkout@v4 with: submodules: true - name: Install PYTHON - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ env.PYTHON_VERSION }} cache: 'pip' + cache-dependency-path: predeployed/test/requirements.txt - name: Install NODE JS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} cache: 'yarn' @@ -104,7 +98,7 @@ jobs: - name: Install project run: | yarn install - npm run compile + yarn compile - name: Install python testing staff run: pip3 install -r predeployed/test/requirements.txt diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b57976aaf..5bb65ffbe 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -name: Build and publish +name: publish on: pull_request: