From dcd8969184528dea6e643f1cc3925882c2d8e593 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Mon, 13 Jul 2020 17:17:24 +0200 Subject: [PATCH] add github actions workflow --- .github/workflows/main.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 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 000000000..54e142165 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,29 @@ +name: run-tests + +on: + push: + pull_request: + schedule: + - cron: '0 0 * * *' + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: borales/actions-yarn@v2.0.0 + with: + cmd: install + - uses: borales/actions-yarn@v2.0.0 + with: + cmd: build:packages + - uses: borales/actions-yarn@v2.0.0 + with: + cmd: audit-ci + - uses: borales/actions-yarn@v2.0.0 + with: + cmd: lint + - uses: borales/actions-yarn@v2.0.0 + with: + cmd: test