diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-12-25 00:25:54 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-12-25 00:25:54 +0800 |
commit | 38a2130542c73a7ac58a379008be16d409233acd (patch) | |
tree | 8d616796c239c68f9667d9402359a8674d57be3f /.github/workflows/main.yml | |
parent | 999ef1f72ba85d8534805f3b08a9084e792fbf04 (diff) | |
parent | 765e6321ad096fdd166285d4bef2c7c294684dd4 (diff) | |
download | SoopyV2-38a2130542c73a7ac58a379008be16d409233acd.tar.gz SoopyV2-38a2130542c73a7ac58a379008be16d409233acd.tar.bz2 SoopyV2-38a2130542c73a7ac58a379008be16d409233acd.zip |
Merge branch 'master' of https://github.com/Soopyboo32/SoopyV2
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..308316b --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,30 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [ master ] + pull_request: + branches: [ master ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + Versions: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + # Runs a single command using the runners shell + - name: Check for Chattriggers 2.0 and 1.3 support + run: node supporttest.js |