Skip to content

Commit

Permalink
fix: github workflow was using old version of node and python
Browse files Browse the repository at this point in the history
  • Loading branch information
lfjnascimento committed Jun 28, 2024
1 parent 60e20c8 commit 94fad97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit 94fad97

Please sign in to comment.