diff --git a/.github/workflows/capsule-cypress-manual-trigger.yml b/.github/workflows/capsule-cypress-manual-trigger.yml index c7bda1858..04c840651 100644 --- a/.github/workflows/capsule-cypress-manual-trigger.yml +++ b/.github/workflows/capsule-cypress-manual-trigger.yml @@ -24,7 +24,7 @@ on: jobs: manual: name: Run capsule tests -- manual trigger - runs-on: ubuntu-latest + runs-on: self-hosted env: GO111MODULE: 'on' VEGA_VERSION: 'v0.55.0' @@ -43,6 +43,12 @@ jobs: with: node-version: 16 + ####### + ## Install Yarn + ####### + - name: Setup yarn + run: npm install -g yarn + ####### ## Checkout repos ####### diff --git a/.github/workflows/capsule-cypress-night-run.yml b/.github/workflows/capsule-cypress-night-run.yml index f4883179a..504a1034c 100644 --- a/.github/workflows/capsule-cypress-night-run.yml +++ b/.github/workflows/capsule-cypress-night-run.yml @@ -9,7 +9,7 @@ on: jobs: nightly: name: Run capsule tests -- nightly - runs-on: ubuntu-latest + runs-on: self-hosted env: GO111MODULE: 'on' VEGA_VERSION: 'v0.55.0' @@ -28,6 +28,12 @@ jobs: with: node-version: 16 + ####### + ## Install Yarn + ####### + - name: Setup yarn + run: npm install -g yarn + ####### ## Checkout repos ####### diff --git a/.github/workflows/capsule-cypress.yml b/.github/workflows/capsule-cypress.yml index 57f1748a4..e2f3d18a1 100644 --- a/.github/workflows/capsule-cypress.yml +++ b/.github/workflows/capsule-cypress.yml @@ -15,7 +15,7 @@ on: jobs: pr: name: Run capsule tests - PR - runs-on: ubuntu-latest + runs-on: self-hosted env: GO111MODULE: 'on' VEGA_VERSION: 'v0.55.0' @@ -34,6 +34,12 @@ jobs: with: node-version: 16 + ####### + ## Install Yarn + ####### + - name: Setup yarn + run: npm install -g yarn + ####### ## Checkout repos #######