18 lines
274 B
YAML
18 lines
274 B
YAML
|
language: node_js
|
||
|
node_js: "stable"
|
||
|
|
||
|
matrix:
|
||
|
include:
|
||
|
- env: MUI_SASS_VERSIONS=3
|
||
|
- env: MUI_SASS_VERSIONS=4.8
|
||
|
- env: MUI_SASS_VERSIONS=latest
|
||
|
|
||
|
install:
|
||
|
- npm i
|
||
|
- npm install -g node-sass@$MUI_SASS_VERSIONS
|
||
|
script:
|
||
|
- npm run test
|
||
|
|
||
|
notifications:
|
||
|
email: false
|