Skip to content

Add SECURITY_REVIEWERS to README #18

Add SECURITY_REVIEWERS to README

Add SECURITY_REVIEWERS to README #18

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18 ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install NPM dependencies
run: npm ci
- name: Unit tests
run: npm test
- name: Check syntax and style
run: npm run lint