Merge branch 'patch-perf' of github.com:AikidoSec/node-RASP into patc… #404
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmark | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
mongodb: | |
image: mongo:5 | |
env: | |
"MONGO_INITDB_ROOT_USERNAME": "root" | |
"MONGO_INITDB_ROOT_PASSWORD": "password" | |
ports: | |
- 27017:27017 | |
postgres: | |
image: postgres:14-alpine | |
env: | |
"POSTGRES_PASSWORD": "password" | |
"POSTGRES_USER": "root" | |
"POSTGRES_DB": "main_db" | |
ports: | |
- "27016:5432" | |
timeout-minutes: 5 | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: make install | |
- run: make build | |
- name: Run MongoDB Benchmark | |
id: mongodb_benchmark | |
run: cd benchmarks/mongodb && node benchmark.js | |
- name: Run SQL Injection Benchmark | |
id: sql_injection_benchmark | |
run: cd benchmarks/sql-injection && node benchmark.js |