diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-14 14:32:47 -0600 |
---|---|---|
committer | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-14 14:32:47 -0600 |
commit | 65afca6029649cc23655fac32a38ed413339ca72 (patch) | |
tree | 262184f30a3bd8d60122b812c6dde1c48905ab11 /.github/workflows | |
parent | f0ce3d23deadf297aa4f40fee1dc4603b8f577a0 (diff) | |
parent | ce4c1db06f3c2d078efb07aa75ebc23574319fc3 (diff) | |
download | skyblock-api-65afca6029649cc23655fac32a38ed413339ca72.tar.gz skyblock-api-65afca6029649cc23655fac32a38ed413339ca72.tar.bz2 skyblock-api-65afca6029649cc23655fac32a38ed413339ca72.zip |
Merge branch 'main' of https://github.com/skyblockstats/skyblock-api into main
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/compile.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml new file mode 100644 index 0000000..d792b5d --- /dev/null +++ b/.github/workflows/compile.yml @@ -0,0 +1,19 @@ +on: [push] + +jobs: + build-push: + runs-on: ubuntu-latest + name: Compile Typescript + steps: + - name: Checkout + uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '14' + - run: npm install + - name: Compile Typescript + uses: FuLagann/tsc-build-push@v1 + with: + user-name: "mat-1" + user-email: "github@matdoes.dev" + message: "Compiled TS into JS" |