Skip to content

build(deps): bump the npm_and_yarn group across 1 directory with 4 updates #349

build(deps): bump the npm_and_yarn group across 1 directory with 4 updates

build(deps): bump the npm_and_yarn group across 1 directory with 4 updates #349

Workflow file for this run

#
# This workflow will build codebase, run linting and test cases on every PR
# and push into develop and master branches.
#
name: Build - PR
on:
push:
branches: [ master ]
pull_request:
types: [ opened, synchronize, reopened ]
branches: [ master ]
jobs:
build:
name: Build, Lint and Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout Codebase
uses: actions/checkout@v4
- name: Setup Node version
uses: actions/setup-node@v4
with:
node-version: 18.16.1
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm ci
- name: Run Linting & Execute Unit Tests
run: npm test