Skip to content

Add repository url to package.json to fix provenance #351

Add repository url to package.json to fix provenance

Add repository url to package.json to fix provenance #351

Workflow file for this run

name: Static Analysis
on: [pull_request, push]
jobs:
static-analysis:
name: 'Lint and Type-check'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- name: Install Dependencies
uses: bahmutov/npm-install@v1
- name: TypeCheck
run: yarn typecheck
- name: Lint
run: yarn lint
- name: Unit Tests
run: yarn jest