Skip to content

Chore/add ttl and trig #12

Chore/add ttl and trig

Chore/add ttl and trig #12

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: [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]
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