Skip to content

Commit

Permalink
Merge pull request #424 from charlielee/init-ci
Browse files Browse the repository at this point in the history
Init GitHub workflow to run tsc, eslint and tests
  • Loading branch information
charlielee committed Aug 21, 2022
2 parents f66ec9b + 0fe135e commit 26cd363
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 167 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/tsc-lint-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Run TSC, Lint and Test"
on: push
jobs:
tsc-lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.15.0
- run: npm install
- run: npm run tsc
- run: npm run lint
- run: npm test

0 comments on commit 26cd363

Please sign in to comment.