Skip to content

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 #9

chore(deps-dev): bump braces from 3.0.2 to 3.0.3

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 #9

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, 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: 1. Build & Test LDES Server Simulator
on:
workflow_dispatch:
pull_request:
branches: [ main ]
paths:
- '**'
- .github/workflows/pr-build.yml
jobs:
build-and-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
strategy:
matrix:
node-version: [16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Dependency Check
uses: dependency-check/[email protected]
with:
project: LDES Server Simulator
path: .
format: HTML
- name: Upload Test results
uses: actions/upload-artifact@v3
with:
name: Depcheck report ldes-server-simulator-${{ matrix.node-version }}
path: ${{ github.workspace }}/reports/
- name: Build
run: npm run build
- name: Test
run: npm test