diff --git a/pipelines/full-build.yaml b/pipelines/full-build.yaml index e41e79a..1ec7ebf 100644 --- a/pipelines/full-build.yaml +++ b/pipelines/full-build.yaml @@ -148,6 +148,13 @@ stages: displayName: 'Use Node 18.x' inputs: versionSpec: 18.x + - script: | + set -xv # Echo commands before they are run + yarn install + yarn run tsc + + workingDirectory: $(Pipeline.Workspace)/working/assemblyline-ui-frontend/ + displayName: TypeScript Frontend - script: | set -xv # Echo commands before they are run yarn install @@ -162,13 +169,6 @@ stages: workingDirectory: $(Pipeline.Workspace)/working/assemblyline-ui-frontend/ displayName: ESLint Frontend - - script: | - set -xv # Echo commands before they are run - yarn install - yarn run tsc - - workingDirectory: $(Pipeline.Workspace)/working/assemblyline-ui-frontend/ - displayName: TypeScript Frontend - job: build_frontend dependsOn: test_frontend