From abb641aa203b2b8dbf1ac113267e135be2f43e02 Mon Sep 17 00:00:00 2001 From: Xabaril Date: Sun, 27 Oct 2019 16:11:58 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 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..b678efd --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: "Test build action" +on: + pull_request: + push: + branches: + - master + - 'releases/*' + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + + - run: npm ci + - run: npm run build + - run: npm test