From 06923ac56ea1de531b5120bc5d7ae13303b25b07 Mon Sep 17 00:00:00 2001 From: Dagen Brock Date: Tue, 23 Mar 2021 16:04:49 -0500 Subject: [PATCH] try simple cicd --- .github/workflows/main.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..ef30aa5 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,25 @@ +name: 'build-test' +on: # rebuild any PRs and main branch changes + pull_request: + push: + branches: + - main + - master + - 'releases/*' + +jobs: + build: # make sure build/ci work properly + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: | + npm install + - run: | + npm run all + test: # make sure the action works on a clean machine without building + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: ./ + with: + milliseconds: 1000