From cacf3a5f4a7e126a2c796c1ed1f61cebdcb891d0 Mon Sep 17 00:00:00 2001 From: Artem Turlenko <76534386+art2url@users.noreply.github.com> Date: Wed, 13 Nov 2024 12:38:25 +0100 Subject: [PATCH] =?UTF-8?q?Node=20=E2=80=93=20nasa-project,=20added=20mong?= =?UTF-8?q?odb=20for=20github=20actions=20(updated=20because=20of=20pretti?= =?UTF-8?q?er=20issues)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/node.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index ab26658..512371b 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -12,18 +12,18 @@ jobs: strategy: matrix: node-version: [16.x, 20.x] - mongodb-version: ['4.4'] + mongodb-version: ["4.4"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Use Node.js version ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} - name: Use MongoDB from GitHub actions - uses: supercharge/mongodb-github-action@1.11.0 - with: - mongodb-version: ${{ matrix.mongodb-version }} + uses: supercharge/mongodb-github-action@1.11.0 + with: + mongodb-version: ${{ matrix.mongodb-version }} - run: npm install - run: npm run build --prefix client - run: npm test