diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-14 14:26:35 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 14:26:35 -0600 |
commit | 46b12f0f22d4af11e1208dfd0a58dbd6266bd87a (patch) | |
tree | 14e1a03c9f337ab4882bf904fb669d3b6df20dcf /.github | |
parent | 5e8649c2e0244150873e30ce1420b0e9a6f3f5a2 (diff) | |
download | skyblock-api-46b12f0f22d4af11e1208dfd0a58dbd6266bd87a.tar.gz skyblock-api-46b12f0f22d4af11e1208dfd0a58dbd6266bd87a.tar.bz2 skyblock-api-46b12f0f22d4af11e1208dfd0a58dbd6266bd87a.zip |
Create main.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..fd60bc4 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +on: [push] + +jobs: + build-push: + runs-on: ubuntu-latest + name: Builds Typescript + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Compile Typescript + uses: FuLagann/tsc-build-push@v1 + with: + user-name: "mat-1" + user-email: "github@matdoes.dev" + message: "Compiled TS into JS" |