Skip to content

feat: Disable the Apollo Client cache #271

feat: Disable the Apollo Client cache

feat: Disable the Apollo Client cache #271

Workflow file for this run

name: Lint
on:
workflow_dispatch:
push:
paths:
- "**.js"
- "**.ts"
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install node v18
uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: npm install
run: npm install
- name: npm run lint
run: npm run lint