Skip to content

[Snyk] Fix for 12 vulnerabilities #27

[Snyk] Fix for 12 vulnerabilities

[Snyk] Fix for 12 vulnerabilities #27

Workflow file for this run

name: ci workflows
on:
push:
branches: [ main ]
pull_request:
branches: [master, main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use ${{matrix.node-version}} nodejs version
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Run linter
run: npm run lint
- name: Check typescript
run: npm run type-check
- name: Run unit test
run: npm test
- run: npm run build --if-present