From 4ba517305d83547ad880d921006c17473700e381 Mon Sep 17 00:00:00 2001 From: Miguel Langarano Date: Thu, 14 Sep 2023 21:23:36 -0500 Subject: [PATCH] attempt to fix e2e-exports ci --- .github/workflows/e2e-exports.yml | 66 +++++++++++++++---------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/.github/workflows/e2e-exports.yml b/.github/workflows/e2e-exports.yml index 4ea488a..f50b01e 100644 --- a/.github/workflows/e2e-exports.yml +++ b/.github/workflows/e2e-exports.yml @@ -1,38 +1,38 @@ name: e2e-exports on: - push: + push: jobs: - e2e-exports: - if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')" - runs-on: ubuntu-latest - env: - DEBUG: currents:* - - strategy: - matrix: - node-version: ["18", "16", "14"] - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - - name: Install npm (node14) - run: npm install -g npm@latest - - - name: Install dependencies - run: npm ci - - - name: Build - run: npm run build - - - name: Link monorepo packages - run: npm install - - - name: Test Exports - working-directory: ./e2e/exports - run: | - npm run testexports + e2e-exports: + if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')" + runs-on: ubuntu-latest + env: + DEBUG: currents:* + + strategy: + matrix: + node-version: ["18", "16"] + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: Install npm (node16) + run: npm install -g npm@latest + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build + + - name: Link monorepo packages + run: npm install + + - name: Test Exports + working-directory: ./e2e/exports + run: | + npm run testexports