Skip to content

Commit

Permalink
Add setup Python on main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfferreira authored Oct 30, 2023
1 parent a98f824 commit 89cc9aa
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: CI
# Controls when the workflow will run
on:
Expand Down Expand Up @@ -30,6 +27,9 @@ jobs:
uses: actions/setup-node@v3
with:
cache: 'npm'

- name: 🟨 Setup python
uses: actions/setup-python@v3

- name: 📦 Install dependencies
run: npm install
Expand All @@ -50,6 +50,9 @@ jobs:
uses: actions/setup-node@v3
with:
cache: 'npm'

- name: 🟨 Setup python
uses: actions/setup-python@v3

- name: 📦 Install dependencies
run: npm install
Expand All @@ -72,6 +75,9 @@ jobs:
uses: actions/setup-node@v3
with:
cache: 'npm'

- name: 🟨 Setup python
uses: actions/setup-python@v3

- name: 📦 Install dependencies
run: npm install
Expand Down

0 comments on commit 89cc9aa

Please sign in to comment.