From 59612b1f2c22dc0d932c8af4238786bc4fd6e51f Mon Sep 17 00:00:00 2001 From: Alex Weininger Date: Fri, 30 Apr 2021 00:11:57 -0700 Subject: [PATCH 1/2] Create ciBuild.yml --- .github/workflows/ciBuild.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/ciBuild.yml diff --git a/.github/workflows/ciBuild.yml b/.github/workflows/ciBuild.yml new file mode 100644 index 0000000..d906bcd --- /dev/null +++ b/.github/workflows/ciBuild.yml @@ -0,0 +1,29 @@ +# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: CI Build + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x, 12.x, 14.x, 15.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - run: npm ci + - run: npm run package From acea7d4fad68e88df7ec7119fa8fbb2081e606f7 Mon Sep 17 00:00:00 2001 From: Alex Weininger Date: Fri, 30 Apr 2021 00:14:36 -0700 Subject: [PATCH 2/2] Add CI badge --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8af39a2..eec00f6 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Appwrite for Visual Studio Code +[![Build](https://github.com/streamlux/vscode-appwrite/actions/workflows/ciBuild.yml/badge.svg)](https://github.com/streamlux/vscode-appwrite/actions/workflows/ciBuild.yml) + Use the Appwrite extension to quickly monitor, manage, and interact with your Appwrite instance directly from VS Code. ## What is Appwrite?