Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-01-23 19:57:00 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-06-10 08:19:51 +0300
commit0c731dd24fd98afbf4c6612335589cf8ac69a548 (patch)
treeaf7636e4b36c1042b1711834d28cec1295b7aed7 /.github
parente7604207a185f506fe75fdc53d2a58ab37591ae2 (diff)
Add dart-sass build test
Builds the CSS with dart-sass and lists the files in dist-sass/css folder
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/dart-sass.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/dart-sass.yml b/.github/workflows/dart-sass.yml
new file mode 100644
index 0000000000..2328273f5b
--- /dev/null
+++ b/.github/workflows/dart-sass.yml
@@ -0,0 +1,24 @@
+name: CSS (Dart Sass)
+on: [push, pull_request]
+env:
+ CI: true
+ NODE: 10.x
+
+jobs:
+ css:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Clone repository
+ uses: actions/checkout@v2
+
+ - name: Set Node.js version
+ uses: actions/setup-node@v1
+ with:
+ node-version: "${{ env.NODE }}"
+
+ - name: Build CSS with Dart Sass
+ run: |
+ npx --package sass@latest sass --version
+ npx --package sass@latest sass --style expanded --source-map --embed-sources --no-error-css scss/:dist-sass/css/
+ ls -Al dist-sass/css