Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hamirmahal authored Jan 11, 2025
0 parents commit 019f201
Show file tree
Hide file tree
Showing 8 changed files with 2,209 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: npm
on: [push, workflow_dispatch]
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm audit
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm test
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run type-check
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 019f201

Please sign in to comment.