-
Notifications
You must be signed in to change notification settings - Fork 133
44 lines (38 loc) · 857 Bytes
/
gulp_sass.yml
File metadata and controls
44 lines (38 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: gulp-sass
on:
push:
branches:
- dev
- stable4
paths:
- '**.scss'
pull_request:
branches:
- dev
- stable4
paths:
- '**.scss'
workflow_dispatch:
jobs:
build:
strategy:
matrix:
node: [20]
python: [3.11]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: npm install
- name: Running gulp-sass
run: npm run build:sass