From 1dfe1fc19e689320ad08b3ae0027c265a1e3e45c Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Tue, 27 Jan 2026 14:19:04 -0600 Subject: [PATCH] Build action before testing --- .github/workflows/e2e-tests.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 3036f59..3105fb6 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -41,6 +41,18 @@ jobs: fetch-depth: 0 ref: ${{ inputs.ref }} + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Build actions + run: npm run build:all + - name: Generate .env.tpl shell: bash run: | @@ -109,6 +121,18 @@ jobs: fetch-depth: 0 ref: ${{ inputs.ref }} + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Build actions + run: npm run build:all + - name: Generate .env.tpl run: | mkdir -p tests