mirror of
https://github.com/twbs/bootstrap.git
synced 2025-03-15 15:29:22 +01:00
Add dart-sass build test
Builds the CSS with dart-sass and lists the files in dist-sass/css folder
This commit is contained in:
parent
e7604207a1
commit
0c731dd24f
24
.github/workflows/dart-sass.yml
vendored
Normal file
24
.github/workflows/dart-sass.yml
vendored
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user