From 160ecca1ffeb86619d1cb2ff1d9bf6ee18037faa Mon Sep 17 00:00:00 2001 From: macdonst Date: Thu, 7 Mar 2024 16:55:35 -0500 Subject: [PATCH] Add integration tests Signed-off-by: macdonst --- .github/workflows/build.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0563a8d..1cecc85 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,14 +7,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [ 14.x, 16.x, 18.x ] + node-version: [ 16.x, 18.x, 20.x ] steps: - name: Check out repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} @@ -33,6 +33,11 @@ jobs: - name: Test run: npm test + - name: Integration Tests + uses: enhance-dev/actions/integration@main + with: + use_local_package: 'true' + publish: needs: build if: startsWith(github.ref, 'refs/tags/v') @@ -40,10 +45,10 @@ jobs: steps: - name: Check out repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 16 registry-url: https://registry.npmjs.org/