From 85905be4b22e47db143480bb743bc84e967ced33 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Wed, 28 Dec 2022 13:20:16 +0000 Subject: [PATCH] Add basic build workflow --- .github/workflows/build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..3c8612b --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ + +name: build-extensions +on: + push: + branches: + - main +jobs: + build-extensions: + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + cache: 'npm' + - name: Run 'make build' + run: make build + shell: bash + - name: Upload plugins + uses: actions/upload-artifact@v3 + with: + name: dist-without-markdown + path: | + dist/* \ No newline at end of file