Skip to content

add slither config file #86

add slither config file

add slither config file #86

Workflow file for this run

name: pnpm test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [15]
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.2
with:
version: 7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
# -------------------------------------------------------------------------
- name: Formatting
run: pnpm format
- name: Running tests
run: pnpm test