-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5522 from alphagov/upgrade-old-libsass-test
- Loading branch information
Showing
1 changed file
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,9 +80,9 @@ jobs: | |
run: | | ||
! grep "\$govuk-" .tmp/all.css | ||
# Node Sass v3.7.0 = LibSass v3.5.0 | ||
# Node Sass v5.0.0 = LibSass v3.5.5 | ||
lib-sass: | ||
name: LibSass v3.5.0 (deprecated) | ||
name: LibSass v3.5.5 (deprecated) | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
@@ -93,11 +93,15 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
cache: npm | ||
node-version: 6 # Node.js 6 supported by Node Sass v3.7.0 | ||
# Node.js 15 is required for the stable support of ES Module | ||
# used when installing `node-sass` | ||
node-version: 15 | ||
|
||
- name: Install package | ||
# Sass 5.0.0 is the first version that supports Python 3 | ||
# and as such can be built on a GitHub Actions runner | ||
run: | | ||
npm install -g node-sass@v3.7.0 | ||
npm install -g node-sass@v5.0.0 | ||
node-sass --version | ||
- name: Run command | ||
|