0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-19 11:52:21 +01:00
Bootstrap/.github/workflows/dart-sass.yml

32 lines
643 B
YAML
Raw Normal View History

2020-06-12 21:12:53 +03:00
name: CSS (Dart Sass)
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
2020-06-12 21:12:53 +03:00
env:
CI: true
FORCE_COLOR: 2
2020-10-29 19:38:31 +02:00
NODE: 14.x
2020-06-12 21:12:53 +03:00
jobs:
css:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set up Node.js
2020-06-12 21:12:53 +03:00
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