Skip to content

build(deps-dev): bump browserify-sign from 4.2.1 to 4.2.2 #337

build(deps-dev): bump browserify-sign from 4.2.1 to 4.2.2

build(deps-dev): bump browserify-sign from 4.2.1 to 4.2.2 #337

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
FORCE_COLOR: 1
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Get npm cache directory
id: npm-cache-dir
run: |
echo "::set-output name=dir::$(npm root)"
- uses: actions/cache@v2
id: npm-cache
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm ci
- run: npm run lint
- run: npm test