diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-14 14:26:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 14:26:46 -0600 |
commit | 0025c85308db54e27faa61567e0ca7283b2a96ab (patch) | |
tree | 52c6283f68bb4e62d1987676e83dbd55ddf75585 /.github/workflows/compile.yml | |
parent | 46b12f0f22d4af11e1208dfd0a58dbd6266bd87a (diff) | |
download | skyblock-api-0025c85308db54e27faa61567e0ca7283b2a96ab.tar.gz skyblock-api-0025c85308db54e27faa61567e0ca7283b2a96ab.tar.bz2 skyblock-api-0025c85308db54e27faa61567e0ca7283b2a96ab.zip |
Rename main.yml to compile.yml
Diffstat (limited to '.github/workflows/compile.yml')
-rw-r--r-- | .github/workflows/compile.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml new file mode 100644 index 0000000..fd60bc4 --- /dev/null +++ b/.github/workflows/compile.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" |