Skip to content

Commit

Permalink
ci: added PR build test
Browse files Browse the repository at this point in the history
  • Loading branch information
medjedovicm committed Jul 7, 2023
1 parent c5434e9 commit 54b2637
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 54b2637

Please sign in to comment.