From 54b2637045830f3f2be7e8f58c4ff369ae3c3050 Mon Sep 17 00:00:00 2001 From: Mihajlo Medjedovic Date: Fri, 7 Jul 2023 13:01:03 +0200 Subject: [PATCH] ci: added PR build test --- .github/workflows/build.yml | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..c951276 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,38 @@ +# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: PR Build and Test + +on: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [lts/hydrogen] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + cache: npm + + - name: Check npm audit + run: npm audit --production --audit-level=low + + - name: Install Dependencies + run: npm ci + + - name: Check code style + run: npm run lint + + - name: Run unit tests + run: npm test + + - name: Run licence checker + run: npm run license-checker \ No newline at end of file