Skip to content

Commit

Permalink
Try running acceptance tests in parallel with regular tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jabrah committed Feb 1, 2024
1 parent faada3c commit 8cc27f2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: CI

on:
workflow_dispatch:
push:
branches:
- main
Expand Down Expand Up @@ -49,3 +50,29 @@ jobs:
run: yarn install --frozen-lockfile
- name: Run Tests
run: yarn test

acceptance-test:
name: "Acceptance test"
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@v3

- name: Install node
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn

- name: Install dependencies
run: yarn install --frozen-lockfile
shell: bash

- name: Build local image
uses: ./.github/actions/build-pass-ui

- name: Run acceptance tests
uses: eclipse-pass/pass-acceptance-testing/.github/actions/acceptance-test@print-docker-image-info
with:
pullimages: missing

0 comments on commit 8cc27f2

Please sign in to comment.