Skip to content

Bump elliptic from 6.5.4 to 6.6.0 in /frontend #3696

Bump elliptic from 6.5.4 to 6.6.0 in /frontend

Bump elliptic from 6.5.4 to 6.6.0 in /frontend #3696

Workflow file for this run

name: Node Lint CI
on: [push]
jobs:
shared:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lint, and test for shared
run: |
cd $GITHUB_WORKSPACE/shared
npm install
npm run lint
npm test
npm audit --only=prod
env:
CI: true
ingestion-batch:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and lint for processUpload
run: |
cd $GITHUB_WORKSPACE/shared
npm install
cd $GITHUB_WORKSPACE/ingestion/batch
npm install
npm run lint
npm test
npm audit --only=prod
env:
CI: true
ingestion-streaming:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and lint for processUpload
run: |
cd $GITHUB_WORKSPACE/ingestion/streaming
npm install
npm run lint
npm audit --only=prod
env:
CI: true
api:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lint, and test for shared
run: |
cd $GITHUB_WORKSPACE/api/v1
npm install
npm run lint
npm audit --only=prod
env:
CI: true
ui:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lint, and test for shared
run: |
cd $GITHUB_WORKSPACE/frontend
npm install
npm run lint
npm audit --only=prod
env:
CI: true