2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +03:00

fix: run benchmark with linked package

This commit is contained in:
Nikolay Kostyurin
2023-07-24 16:47:15 +02:00
parent 398ecaba1a
commit f9f7212061
2 changed files with 7 additions and 31 deletions
+7 -4
View File
@@ -11,11 +11,14 @@ jobs:
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 14
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: cd benchmark && npm ci
run: npm run bootstrap
- name: Run benchmark
run: cd benchmark && npm start