Skip to content

build(deps-dev): bump cipher-base from 1.0.4 to 1.0.7 #1490

build(deps-dev): bump cipher-base from 1.0.4 to 1.0.7

build(deps-dev): bump cipher-base from 1.0.4 to 1.0.7 #1490

Workflow file for this run

name: Pull Request workflow
on:
pull_request:
# Only accept PRs targeting the master branch
branches: [main]
jobs:
test:
name: App linting/testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup NodeJS LTS
uses: actions/setup-node@v6
with:
node-version: '10.x'
- name: Cache node modules
uses: actions/cache@v5
id: node_modules_cache
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }}-
${{ runner.os }}-node_modules-
${{ runner.os }}-
- name: Install dependencies
# Skip this step if a cache hit occurs on the key
if: steps.node_modules_cache.outputs.cache-hit != 'true'
run: npm ci
- name: Lint application
run: npm run lint
- name: Test application
run: npm run action:test