From bbb3755a1feb046612b6c61b11b928f654a1abf3 Mon Sep 17 00:00:00 2001 From: Tim Buschtoens Date: Thu, 17 Nov 2022 10:22:17 +0100 Subject: [PATCH] Add review.yml Change-Id: Ib4d29fb9fae0b73221180be499bf6403c315821f --- .github/workflows/review.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/review.yml diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml new file mode 100644 index 000000000..ee346276d --- /dev/null +++ b/.github/workflows/review.yml @@ -0,0 +1,20 @@ +name: Review + +on: + pull_request: + branches: [ "master" ] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: 16 + cache: 'npm' + - run: npm i grunt-cli -g + - run: npm i + - run: grunt -v