From e08e24360089d09f4a468fc6f698500776b2bb48 Mon Sep 17 00:00:00 2001 From: lfjnascimento Date: Fri, 28 Jun 2024 16:04:45 -0300 Subject: [PATCH] fix: github workflow was using old version of node and python --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b065ab4..9f4dfa1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -66,7 +66,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version-file: '.nvmrc' + node-version-file: '.dashboard/.nvmrc' - name: Run eslint run: pnpm lint @@ -94,7 +94,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version-file: '.nvmrc' + node-version-file: '.dashboard/.nvmrc' - name: Run build run: pnpm build @@ -111,7 +111,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: '3.12' - name: Install Poetry run: |