Skip to content

chore(deps): bump find-my-way from 8.2.0 to 8.2.2 #15

chore(deps): bump find-my-way from 8.2.0 to 8.2.2

chore(deps): bump find-my-way from 8.2.0 to 8.2.2 #15

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 Test Message Sink
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: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- 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/Dependency-Check_Action@1.1.0
id: Depcheck
with:
project: Test Message Sink
path: .
format: HTML
- name: Upload Test results
uses: actions/upload-artifact@v3
with:
name: Depcheck report test-message-sink-${{ matrix.node-version }}
path: ${{ github.workspace }}/reports/
- name: Build
run: npm run build
- name: Test
run: npm test