From 89cc9aa7816d48d97454df42291969971252c6f9 Mon Sep 17 00:00:00 2001 From: Ralf Ferreira <57114762+ralfferreira@users.noreply.github.com> Date: Mon, 30 Oct 2023 14:17:39 -0300 Subject: [PATCH] Add setup Python on main.yml --- .github/workflows/main.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 580d7a0b..596f8560 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: @@ -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 @@ -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 @@ -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