Skip to content

Commit

Permalink
bugfix: set python version in sass ci task
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminkott committed Nov 12, 2023
1 parent 08ad4fb commit caf9a46
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/gulp_sass.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,25 @@ jobs:
strategy:
matrix:
node: [18]
python: [3.11]
os: [ubuntu-latest, macos-11]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

- name: Install Dependencies
run: npm install

- name: Running gulp-sass
run: npm run build:sass

0 comments on commit caf9a46

Please sign in to comment.