diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 314903b..f076234 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,3 +26,24 @@ jobs: with: name: lib path: ./lib + test: + runs-on: ubuntu-latest + needs: [ install-and-build ] + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Use Node + uses: actions/setup-node@v3 + with: + node-version: '18.x' + cache: npm + cache-dependency-path: ./package-lock.json + - name: Download shared dist + uses: actions/download-artifact@v3 + with: + name: lib + path: ./lib + - name: Link Dependencies + run: npm ci + - name: Test + run: npm test