diff --git a/test/.github/workflows/build.yaml b/test/.github/workflows/build.yaml new file mode 100644 index 0000000..1695165 --- /dev/null +++ b/test/.github/workflows/build.yaml @@ -0,0 +1,14 @@ +name: build +on: + - push + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Install dependencies + run: npm install + - name: Build + run: npm run build