From 1d20d12f3d812229460a30964948f44b04254268 Mon Sep 17 00:00:00 2001 From: Wade Wilkey Date: Mon, 3 Feb 2020 14:24:13 -0700 Subject: [PATCH 1/3] change text --- src/app/app.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app.component.html b/src/app/app.component.html index 139e8f7..7e26506 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -383,7 +383,7 @@ - {{ title }} app is running! + {{ title }} app is running yeah! Date: Mon, 3 Feb 2020 14:32:19 -0700 Subject: [PATCH 2/3] use xvfb --- .github/workflows/pull-request.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 8dc1085..3fb0c4b 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -4,15 +4,16 @@ on: pull_request jobs: build: - runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@master - with: - node-version: 12.x - - name: Install - run: npm ci - - name: E2E - run: npm run se2e + - uses: actions/checkout@v2 + - uses: actions/setup-node@master + with: + node-version: 12.x + - name: Install + run: npm ci + - name: E2E + uses: GabrielBB/xvfb-action@v1.0 + with: + run: npm run se2e From eb928ade0297373510ce083132627da339d1b98e Mon Sep 17 00:00:00 2001 From: Wade Wilkey Date: Mon, 3 Feb 2020 14:36:05 -0700 Subject: [PATCH 3/3] try mac --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 3fb0c4b..423e4a3 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -4,7 +4,7 @@ on: pull_request jobs: build: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - uses: actions/checkout@v2