Skip to content

[Snyk] Fix for 1 vulnerabilities #374

[Snyk] Fix for 1 vulnerabilities

[Snyk] Fix for 1 vulnerabilities #374

Workflow file for this run

name: PR check
on: pull_request
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2-beta
with:
node-version: "16.10.0"
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
- name: Setup dependencies (setup dependencies in packages)
run: npm run setup
- name: Build packages (Compile contracts, generate contract types and compile typescript)
run: npm run build
- name: Build type checking
run: npx tsc --project tsconfig.type-checking.json
- name: Run test
run: npm test