From 46b12f0f22d4af11e1208dfd0a58dbd6266bd87a Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 14 Feb 2021 14:26:35 -0600 Subject: Create main.yml --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml 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" -- cgit