-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1ac51ea
Showing
21 changed files
with
2,951 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.ts] | ||
indent_style = space | ||
indent_size = 2 | ||
max_line_length = 88 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Main Workflow | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: read | ||
|
||
concurrency: | ||
group: main-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | ||
|
||
env: | ||
NPM_CONFIG_AUDIT: "false" | ||
NPM_CONFIG_FUND: "false" | ||
|
||
jobs: | ||
|
||
checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
- name: Install Dependencies | ||
run: npm install | ||
- name: Run tsc | ||
run: npm run build | ||
- name: Run fmt check | ||
run: npm run fmt-check | ||
- name: Run lint check | ||
run: npm run lint | ||
|
||
audit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
- run: npm install | ||
- run: npm audit --audit-level moderate --omit dev | ||
|
||
test-defaults: | ||
runs-on: windows-2022 | ||
steps: | ||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
- name: Setup Dev Drive | ||
uses: ./ | ||
|
||
test-inputs: | ||
runs-on: windows-2022 | ||
steps: | ||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
- name: Setup Dev Drive | ||
uses: ./ | ||
with: | ||
drive-size: 2GB | ||
drive-format: NTFS | ||
drive-path: "my_awesome_drive.vhdx" | ||
workspace-copy: true |
Oops, something went wrong.