Skip to content

Commit

Permalink
Run Sass tests on maintained Node.js versions
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrotherham committed Nov 22, 2022
1 parent 0d4f16f commit b7f917f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/sass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

jobs:
dart-sass:
name: Dart Sass ${{ matrix.package-version }}
name: Dart Sass ${{ matrix.package-version }} (Node.js ${{ matrix.node-version }})
runs-on: ubuntu-latest

strategy:
Expand All @@ -28,6 +28,8 @@ jobs:
- 1.x # Dart Sass v1.x (latest)

node-version:
- 14
- 16
- 18

include:
Expand Down Expand Up @@ -60,7 +62,7 @@ jobs:
run: time ${{ matrix.run || '(echo "@import "\""govuk/all"\"";" | sass --stdin --quiet-deps --load-path=src)' }} > /dev/null

node-sass:
name: Node Sass ${{ matrix.package-version }}
name: Node Sass ${{ matrix.package-version }} (Node.js ${{ matrix.node-version }})
runs-on: ubuntu-latest

strategy:
Expand All @@ -71,6 +73,8 @@ jobs:
- 8.x # Node Sass v8.x = LibSass v3.x latest

node-version:
- 14
- 16
- 18

include:
Expand Down

0 comments on commit b7f917f

Please sign in to comment.