Skip to content

Bump browserify-sign from 4.2.1 to 4.2.2 #228

Bump browserify-sign from 4.2.1 to 4.2.2

Bump browserify-sign from 4.2.1 to 4.2.2 #228

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
preflight:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Set node version
- uses: actions/setup-node@v2
with:
node-version: '12.14.1'
# Cache node_modules
- uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install node modules
run: npm install
- name: Preflight
run: npm run preflight