Skip to content

[Snyk] Upgrade @algolia/autocomplete-theme-classic from 1.7.1 to 1.17.4 #10

[Snyk] Upgrade @algolia/autocomplete-theme-classic from 1.7.1 to 1.17.4

[Snyk] Upgrade @algolia/autocomplete-theme-classic from 1.7.1 to 1.17.4 #10

Workflow file for this run

name: Prettier & Lint Checker
on:
pull_request:
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run linter
run: npm run lint
- name: Run prettier
run: npm run format-check