Skip to content

build(deps): bump node-forge from 1.3.1 to 1.3.2 #556

build(deps): bump node-forge from 1.3.1 to 1.3.2

build(deps): bump node-forge from 1.3.1 to 1.3.2 #556

Workflow file for this run

name: Build
on:
push:
branches:
- master
- main
paths-ignore:
- '**.md'
pull_request:
jobs:
build:
name: Build, Lint and Test Project
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
# Because the storybook project use the built version of angular-ui,
# we need to run these steps after building the project.
- name: Lint project
run: npm run lint
- name: Test project
run: npm run test-ci