Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
samypr100 committed May 12, 2024
0 parents commit 1ac51ea
Show file tree
Hide file tree
Showing 21 changed files with 2,951 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
63 changes: 63 additions & 0 deletions .github/workflows/main.yml
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
Loading

0 comments on commit 1ac51ea

Please sign in to comment.