Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Upgrade all dependencies and devDependencies #318

Upgrade all dependencies and devDependencies

Upgrade all dependencies and devDependencies #318

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- id: node-cache
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/.nvmrc') }}-${{ hashFiles('**/package-lock.json') }}
- if: steps.node-cache.outputs.cache-hit != 'true'
run: npm install --no-audit --no-fund --progress=false
- run: npm run lint
- run: npm run build