diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-12-25 00:24:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-25 00:24:44 +0800 |
commit | 765e6321ad096fdd166285d4bef2c7c294684dd4 (patch) | |
tree | 41c39f62c3e833b00a76d0ff0ac951ce25d9e0e6 /.github | |
parent | 6695867c01a718d20800394fe0685fba598e57b6 (diff) | |
download | SoopyV2-765e6321ad096fdd166285d4bef2c7c294684dd4.tar.gz SoopyV2-765e6321ad096fdd166285d4bef2c7c294684dd4.tar.bz2 SoopyV2-765e6321ad096fdd166285d4bef2c7c294684dd4.zip |
Add CI (Part 1)
Diffstat (limited to '.github')
-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 |