Skip to content

Bump jszip from 3.7.0 to 3.8.0 #452

Bump jszip from 3.7.0 to 3.8.0

Bump jszip from 3.7.0 to 3.8.0 #452

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:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
# Set node version
- uses: actions/setup-node@v2
with:
node-version: '12.14.1'
# Set npm version
- name: Set NPM 7
run: npm install -g npm@7.6.3
# 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 MDNS build dependencies
run: sudo apt-get install libavahi-compat-libdnssd-dev
- name: Install node modules
run: npm install
- name: Lint and test
run: npm run preflight
build:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
# Set node version
- uses: actions/setup-node@v2
with:
node-version: '12.14.1'
# Set npm version
- name: Set NPM 7
run: npm install -g npm@7.6.3
# 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 MDNS build dependencies
run: sudo apt-get install libavahi-compat-libdnssd-dev
- name: Install node modules
run: npm install
- name: Build
run: npm run build