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 a671c87 commit c55eaeeCopy full SHA for c55eaee
.github/workflows/sass.yml
@@ -13,6 +13,7 @@ jobs:
13
strategy:
14
matrix:
15
os: [macos-latest, ubuntu-latest, windows-latest]
16
+ node-version: ['18.x', '20.x']
17
18
steps:
19
- name: Checkout source Git branch
@@ -22,6 +23,11 @@ jobs:
22
23
fetch-depth: 10
24
submodules: 10
25
26
+ - name: Use Node.js ${{ matrix.node-version }}
27
+ uses: actions/setup-node@v4
28
+ with:
29
+ node-version: ${{ matrix.node-version }}
30
+
31
- name: Install Dependencies
32
run: |
33
cd static
0 commit comments