Skip to content

Remove postinstall

Remove postinstall #86

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- 'main'
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run Linting
run: npm run lint
- name: Run Testing
run: npm run test:ci