Skip to content

Bump pdfjs-dist from 2.12.313 to 4.2.67 in /webapp #1358

Bump pdfjs-dist from 2.12.313 to 4.2.67 in /webapp

Bump pdfjs-dist from 2.12.313 to 4.2.67 in /webapp #1358

Workflow file for this run

name: webapp
on:
push:
branches: [ dev, stable, prod ]
paths:
- 'webapp/**'
pull_request:
branches: [ dev, stable, prod ]
paths:
- 'webapp/**'
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js 14
uses: actions/setup-node@v1
with:
node-version: 14
- name: Install dependencies
run: npm ci
working-directory: ./webapp
- name: Build webapp
run: npm run build
working-directory: ./webapp
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js 14
uses: actions/setup-node@v1
with:
node-version: 14
- name: Install dependencies
run: npm ci
working-directory: ./webapp
- name: Lint webapp
run: npm run lint:nofix
working-directory: ./webapp