Skip to content

Commit a5158bb

Browse files
authored
Merge branch 'master' into simeonoff/merge-sassdocs
2 parents 2d6c79b + 673650f commit a5158bb

File tree

7 files changed

+631
-1122
lines changed

7 files changed

+631
-1122
lines changed

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [14.x, 16.x, 18.x]
19+
node-version: [16.x, 18.x]
2020

2121
steps:
2222
- name: Checkout
@@ -27,7 +27,7 @@ jobs:
2727
node-version: ${{ matrix.node-version }}
2828
cache: 'npm'
2929
- name: Install packages
30-
run: npm install --force
30+
run: npm install
3131
- name: Lint Lib
3232
run: npm run lint:lib
3333
env:

.github/workflows/npm-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
12-
- uses: actions/setup-node@v2
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 14
14+
node-version: 16
1515
cache: 'npm'
1616
registry-url: 'https://registry.npmjs.org'
1717
- run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV

azure-pipelines.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ pool:
22
vmImage: 'ubuntu-latest'
33

44
steps:
5-
- script: npm ci
6-
displayName: 'Install dependencies'
7-
env:
8-
AZURE_PIPELINES: "true"
5+
- task: NodeTool@0
6+
inputs:
7+
versionSpec: '16.x'
8+
displayName: 'Install Node.js'
99

10-
- script: sudo npm install -g istanbul-combine
11-
displayName: 'Install coverage combiner'
10+
- script: npm install
11+
displayName: 'Install dependencies'
1212
env:
1313
AZURE_PIPELINES: "true"
1414

@@ -20,6 +20,12 @@ steps:
2020
- script: npm run build:lib
2121
displayName: 'Build source code and styles'
2222

23+
- script: npm run build:typedoc:en:production
24+
displayName: 'Build typedoc EN'
25+
26+
- script: npm run build:sassdoc:en:production
27+
displayName: 'Build sassdoc EN'
28+
2329
- script: npm run test:lib:azure
2430
displayName: 'Run all tests'
2531
env:
@@ -43,6 +49,9 @@ steps:
4349
- script: npm run test:schematics
4450
displayName: 'Run migrations & schematics'
4551

52+
- script: npm run test:i18n
53+
displayName: 'Test i18n'
54+
4655
- task: PublishTestResults@2
4756
condition: succeededOrFailed()
4857
inputs:

0 commit comments

Comments
 (0)