Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
richardwu committed Nov 19, 2023
0 parents commit 4763c7b
Show file tree
Hide file tree
Showing 21 changed files with 29,340 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @richardwu @ilmoi
20 changes: 20 additions & 0 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build and Test

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: yarn
- run: yarn build
- run: yarn test
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Private keys/secrets
*.jks
*.p8
*.p12
*.key
.env

# macOS
.DS_Store

# WSL
*:Zone.Identifier

# Temp files
*.orig.*
*.swp
*.log

# Node/tsc
node_modules/
npm-debug.*
dist/

# Yarn (uncomment for zero-install: https://stackoverflow.com/a/58550620)
.yarn/
#!.yarn/cache
#!.yarn/patches
#!.yarn/plugins
!.yarn/releases
#!.yarn/versions
#!.yarn/sdks
# .yarn/unplugged
# .yarn/build-state.yaml

# IDEs
.idea/
Empty file added .npmrc
Empty file.
Loading

0 comments on commit 4763c7b

Please sign in to comment.