From a7cfa218d1883330e9f80d8e8b7c3227d1797ee3 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Fri, 14 Aug 2020 16:34:43 +0200 Subject: [PATCH] add github workflow --- .github/workflows/main.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 00000000..08eec4e0 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ +name: build + +on: [push, pull_request] + +jobs: + audit: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [14.x] + + steps: + - uses: actions/checkout@v2.3.2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2.1.1 + with: + node-version: ${{ matrix.node-version }} + - run: yarn install + - run: yarn run startandtest