Skip to content

Commit

Permalink
feat: functionality for foundational tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
hamirmahal committed Oct 6, 2024
0 parents commit 4715ff2
Show file tree
Hide file tree
Showing 12 changed files with 2,482 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Audit
on: [push]
jobs:
dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm audit
9 changes: 9 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Check
on: [push]
jobs:
types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run type-check
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Test
on: [push]
jobs:
TypeScript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm test
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Avoid committing installed dependencies.
node_modules/
661 changes: 661 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

Loading

0 comments on commit 4715ff2

Please sign in to comment.