Skip to content

Commit 7041b71

Browse files
authored
Retire basic checks GH action (microsoft#161376)
* Add /build/ folder checks (just like GH action) * Add more checks that were only present in the GH action * Disable basic checks GH action
1 parent 9db57e7 commit 7041b71

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

.github/workflows/basic.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
name: Basic checks
22

3-
on:
4-
push:
5-
branches:
6-
- main
7-
pull_request:
8-
branches:
9-
- main
3+
on: workflow_dispatch
4+
5+
# on:
6+
# push:
7+
# branches:
8+
# - main
9+
# pull_request:
10+
# branches:
11+
# - main
1012

1113
jobs:
1214
main:

build/azure-pipelines/product-compile.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,17 @@ steps:
126126
127127
- script: |
128128
set -e
129-
yarn npm-run-all -lp core-ci extensions-ci hygiene eslint valid-layers-check
129+
yarn npm-run-all -lp core-ci extensions-ci hygiene eslint valid-layers-check vscode-dts-compile-check tsec-compile-check
130130
env:
131131
GITHUB_TOKEN: "$(github-distro-mixin-password)"
132132
displayName: Compile & Hygiene
133133
134+
- script: |
135+
set -e
136+
yarn --cwd build compile
137+
./.github/workflows/check-clean-git-state.sh
138+
displayName: Check /build/ folder
139+
134140
- ${{ if ne(parameters.VSCODE_QUALITY, 'oss') }}:
135141
- script: |
136142
set -e

0 commit comments

Comments
 (0)