From 35a383b366cfb5fd28313553fd5d29ae53f61908 Mon Sep 17 00:00:00 2001 From: nael Date: Tue, 24 Oct 2023 21:44:42 +0200 Subject: [PATCH 1/2] feat: add --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eefb922ba..c4dd7da2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x, 16.x] + node-version: [16.x] steps: - name: Check out code From c48415de3fea0961ba94b282ee7f30de193a43ea Mon Sep 17 00:00:00 2001 From: nael Date: Tue, 24 Oct 2023 21:51:12 +0200 Subject: [PATCH 2/2] feat: added --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4dd7da2d..3cfafe7f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,10 +29,13 @@ jobs: run: npm install -g pnpm - name: Install dependencies - run: cd api && pnpm install + run: pnpm install + working-directory: api - name: Build run: pnpm run build + working-directory: api - name: Test run: pnpm run test + working-directory: api