[Snyk] Security upgrade @ew-did-registry/did-ipfs-store from 0.7.1-alpha.816.0 to 0.8.0 #380
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: 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 |