Skip to content

Bump eslint-plugin-security from 1.7.1 to 2.0.0 #443

Bump eslint-plugin-security from 1.7.1 to 2.0.0

Bump eslint-plugin-security from 1.7.1 to 2.0.0 #443

Workflow file for this run

# This workflow will do a clean install of node dependencies, 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: "NodeCI"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: --max-old-space-size=8192
strategy:
matrix:
node: [ 16, 18, 20 ]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- name: Build
run: npm run build --verbose
timeout-minutes: 10
- name: Unit tests
run: npm run test --verbose
- name: Report Coverage
run: npm run codecov