Skip to content

Commit

Permalink
Created Workflow files and updated npmignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
thealternatedev committed Oct 16, 2023
1 parent 62654dc commit afd5037
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/tsc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
pull_request:

jobs:
tsc:
name: tsc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install node v12
uses: actions/setup-node@v1
with:
node-version: 12
- name: yarn install
run: yarn install
- name: tsc
uses: icrawl/action-tsc@v1
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
src
src
test

0 comments on commit afd5037

Please sign in to comment.