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 (limited to '.github/workflows') 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 From 0025c85308db54e27faa61567e0ca7283b2a96ab Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 14 Feb 2021 14:26:46 -0600 Subject: Rename main.yml to compile.yml --- .github/workflows/compile.yml | 15 +++++++++++++++ .github/workflows/main.yml | 15 --------------- 2 files changed, 15 insertions(+), 15 deletions(-) create mode 100644 .github/workflows/compile.yml delete mode 100644 .github/workflows/main.yml (limited to '.github/workflows') 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" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index fd60bc4..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,15 +0,0 @@ -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 From 4e452200bc7e4ccc8935cd5a2f018767fb92595a Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 14 Feb 2021 14:29:17 -0600 Subject: Update compile.yml --- .github/workflows/compile.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index fd60bc4..f8e1d50 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -7,6 +7,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '14' - name: Compile Typescript uses: FuLagann/tsc-build-push@v1 with: -- cgit From 39c2ce9c5c5060234921cadfb3ac06a83b8ec9d6 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 14 Feb 2021 14:30:04 -0600 Subject: Update compile.yml --- .github/workflows/compile.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.github/workflows') diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index f8e1d50..d40a858 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -10,6 +10,7 @@ jobs: - uses: actions/setup-node@v2 with: node-version: '14' + - run: npm install - name: Compile Typescript uses: FuLagann/tsc-build-push@v1 with: -- cgit From ce4c1db06f3c2d078efb07aa75ebc23574319fc3 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 14 Feb 2021 14:31:04 -0600 Subject: Update compile.yml --- .github/workflows/compile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index d40a858..d792b5d 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -3,7 +3,7 @@ on: [push] jobs: build-push: runs-on: ubuntu-latest - name: Builds Typescript + name: Compile Typescript steps: - name: Checkout uses: actions/checkout@v2 -- cgit