From 66589f9e6239f7ab82277255fdedcde9f9f30aad Mon Sep 17 00:00:00 2001 From: Cameron Koegel Date: Thu, 10 Nov 2022 15:41:15 -0500 Subject: [PATCH] Add tests --- .github/workflows/publish.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f9ef35b0..aa8d0e63 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,7 +25,7 @@ jobs: npm-${{ hashFiles('package-lock.json') }} npm- - - name: CI + - name: Clean Install run: npm ci && npm ci --prefix cli - name: Bundle @@ -45,11 +45,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 - # - name: CI - # run: npm ci && npm ci --prefix cli + - name: Clean Install + run: npm ci && npm ci --prefix cli - # - name: Unit Test - # run: npm test + - name: Unit Test + run: npm test e2e-tests: name: E2E Tests @@ -59,17 +59,17 @@ jobs: - name: Checkout uses: actions/checkout@v3 - # - name: CI - # run: npm ci && npm ci --prefix cli + - name: Clean Install + run: npm ci && npm ci --prefix cli - # - name: Download bundled artifact - # uses: actions/download-artifact@v3 - # with: - # name: bundles - # path: bundles + - name: Download bundled artifact + uses: actions/download-artifact@v3 + with: + name: bundles + path: bundles - # - name: E2E Test - # run: npm run e2e + - name: E2E Test + run: npm run e2e publish: name: Publish