Skip to content

Commit

Permalink
Added regression testing via Mocha
Browse files Browse the repository at this point in the history
  • Loading branch information
BeardedFish committed Feb 19, 2024
1 parent c9ff926 commit f898ebe
Show file tree
Hide file tree
Showing 22 changed files with 921 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true

[test/workspace/**/*.txt]
trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 2
indent_style = space
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
lint-and-compile-code:
runs-on: ubuntu-latest
runs-on: windows-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
Expand All @@ -32,3 +32,5 @@ jobs:
run: npm run lint
- name: Compile Code
run: npm run compile
- name: Test Code
run: npm run test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vscode-test/
dist/
node_modules/
*.vsix
3 changes: 2 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.vscode/
.vscode-test/
.github/**
.husky/**
.vscode/**
**/node_modules
**/.eslintignore
**/.eslintrc.json
Expand Down
Loading

0 comments on commit f898ebe

Please sign in to comment.