We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae4250a commit c106ed3Copy full SHA for c106ed3
.github/workflows/node-js.yml
@@ -15,13 +15,18 @@ jobs:
15
16
strategy:
17
matrix:
18
- node-version: [8.x, 10.x]
+ node-version: [10.x]
19
20
steps:
21
- uses: actions/checkout@v2
22
- name: Use Node.js ${{ matrix.node-version }}
23
uses: actions/setup-node@v1
24
with:
25
node-version: ${{ matrix.node-version }}
26
- - run: npm ci
27
- - run: npm run build
+ - run: |
+ curl -O -L https://github.com/sass/dart-sass/releases/download/1.93.2/dart-sass-1.93.2-linux-x64.tar.gz
28
+ tar -xzvf dart-sass-*.tar.gz
29
+ echo PATH=${GITHUB_WORKSPACE}/dart_sass >> $GITHUB_ENV
30
+ which sass
31
+ npm ci
32
+ npm run build
0 commit comments