Skip to content

Commit c106ed3

Browse files
committed
trying to fix gh action
1 parent ae4250a commit c106ed3

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/node-js.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,18 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [8.x, 10.x]
18+
node-version: [10.x]
1919

2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Use Node.js ${{ matrix.node-version }}
2323
uses: actions/setup-node@v1
2424
with:
2525
node-version: ${{ matrix.node-version }}
26-
- run: npm ci
27-
- run: npm run build
26+
- run: |
27+
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

Comments
 (0)