summary refs log tree commit diff homepage
path: root/.github
diff options
context:
space:
mode:
authordestruc7i0n <destruc7i0n@users.noreply.github.com>2021-12-24 18:00:51 -0500
committerdestruc7i0n <destruc7i0n@users.noreply.github.com>2021-12-24 18:00:51 -0500
commitcb077a84abea9f1428f8fe35e705bfeecfcc9989 (patch)
tree6c0406cd5198fa0e9ba4f2780b49201389fb946b /.github
parentbump yarn lock (diff)
downloadshulker-cb077a84abea9f1428f8fe35e705bfeecfcc9989.tar.gz
shulker-cb077a84abea9f1428f8fe35e705bfeecfcc9989.zip
added github build workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..10e715b
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,18 @@
+name: Build
+on: [push]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/checkout@v2
+    - uses: actions/setup-node@v2
+      with:
+        node-version: '16.x'
+    - name: Install packages
+      run: yarn install
+    - name: Type check
+      run: yarn type-check
+    - name: Build
+      run: yarn build