Skip to content

Commit

Permalink
Add AppVeyor CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyfer committed Jul 14, 2018
1 parent 85db094 commit cf34c57
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "10"

install:
- npm install

test_script:
- node --version
- npm --version
- npm test

build: off
3 changes: 2 additions & 1 deletion tests/index.test.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
const path = require('path');
const sass = require('node-sass');
const importer = require('../');

const foundation = sass.renderSync({
file: 'node_modules/foundation/scss/foundation.scss',
}).css.toString();

const normalize = '@import url(node_modules/normalize.css/normalize.css);\n';
const normalize = `@import url(node_modules${path.sep}normalize.css${path.sep}normalize.css);\n`;

const compile = function(data) {
return new Promise((yeah, nah) => {
Expand Down

0 comments on commit cf34c57

Please sign in to comment.