From 770b270eee2fcf22646e6274567d4ee321c13ba3 Mon Sep 17 00:00:00 2001 From: RupertJonesSA Date: Sat, 21 Sep 2024 23:59:27 -0400 Subject: [PATCH] fixed directory issue in git action --- .github/workflows/test.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d53416e..b462584 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,15 +9,14 @@ on: - "main" jobs: - lint: runs-on: ubuntu-latest strategy: matrix: node-version: [21.x] - + steps: - - name: Checkout + - name: Checkout uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} @@ -43,17 +42,18 @@ jobs: - name: Checkout uses: actions/checkout@v2 with: - node-version: ${{ matrix.node-version }} - - - name: Setup Node - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - - - name: Install Dependencies - run: npm ci - working-directory: client/ - - - name: Run tests - run: npm test - working-directory: client/ + node-version: + ${{ matrix.node-version }} + # we need to make a Node.js server first :p + # - name: Setup Node + # uses: actions/setup-node@v2 + # with: + # node-version: ${{ matrix.node-version }} + # + # - name: Install Dependencies + # run: npm ci + # working-directory: server/ + # + # - name: Run tests + # run: npm test + # working-directory: server/