chore: fix workflow syntax

This commit is contained in:
Karol Sójko
2023-10-02 15:12:45 +02:00
parent 70c70131bc
commit eb170843e7
2 changed files with 26 additions and 38 deletions

View File

@@ -76,25 +76,19 @@ jobs:
e2e-base:
name: E2E Base Test Suite
needs: build-docker
runs-on: ubuntu-latest
steps:
- name: Run E2E test suite
uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main
with:
snjs_image_tag: ${{ github.sha }}
suite: base
author: ${{ github.actor }}
ref_name: "app:${{ github.ref }}"
uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main
with:
snjs_image_tag: ${{ github.sha }}
suite: base
author: ${{ github.actor }}
ref_name: "app:${{ github.ref }}"
e2e-vaults:
name: E2E Vaults Test Suite
needs: build-docker
runs-on: ubuntu-latest
steps:
- name: Run E2E vaults test suite
uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main
with:
snjs_image_tag: ${{ github.sha }}
suite: vaults
author: ${{ github.actor }}
ref_name: "app:${{ github.ref }}"
uses: standardnotes/server/.github/workflows/e2e-test-suite.yml@main
with:
snjs_image_tag: ${{ github.sha }}
suite: vaults
author: ${{ github.actor }}
ref_name: "app:${{ github.ref }}"