Skip to content

Commit

Permalink
Check that e2e snapshot files are up to date (#4610)
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheeguerin authored Oct 4, 2024
1 parent 4f649a9 commit b3dbbfd
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
# Change versionKind to one of: internal, fix, dependencies, feature, deprecation, breaking
changeKind: internal
packages:
- "@typespec/compiler"
---

Check that e2e snapshot files are up to date
3 changes: 3 additions & 0 deletions eng/tsp-core/pipelines/jobs/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ jobs:
artifact: "uitestresults-${{ parameters.os }}-node-${{ parameters.nodeVersion }}"
displayName: Publish UI tests artifacts
condition: ne(variables['Agent.OS'], 'Windows_NT')

- script: node eng/common/scripts/check-for-changed-files.js
displayName: Check Git Status For Changed Files
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# MacOS
.DS_Store

# Default TypeSpec output
tsp-output/
dist/

# Dependency directories
node_modules/
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export default tsEslint.config(
ignores: ["**/dist/**/*", "**/.temp/**/*"],
},
eslint.configs.recommended,
...tsEslint.configs.recommended
...tsEslint.configs.recommended,
);
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# MacOS
.DS_Store

# Default TypeSpec output
tsp-output/
dist/

# Dependency directories
node_modules/
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export default tsEslint.config(
ignores: ["**/dist/**/*", "**/.temp/**/*"],
},
eslint.configs.recommended,
...tsEslint.configs.recommended
...tsEslint.configs.recommended,
);

0 comments on commit b3dbbfd

Please sign in to comment.