Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions azure-pipelines/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,9 @@ extends:
- name: node-spdlog

buildSteps:
- script: yarn --frozen-lockfile
- script: npm ci
displayName: Install dependencies

# the rest of the build steps are part of the 'prepack' script, automatically run when the pipeline invokes 'yarn pack'

testPlatforms:
- name: Linux
nodeVersions:
Expand All @@ -44,10 +42,10 @@ extends:
- 16.x

testSteps:
- script: yarn --frozen-lockfile
- script: npm ci
displayName: Install dependencies

- script: yarn test
- script: npm run test
displayName: Compile & test npm package

publishPackage: ${{ parameters.publishPackage }}