Skip to content

Commit

Permalink
fix workflow / fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vinikjkkj committed Aug 8, 2024
1 parent 1bd9e2f commit f5612dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- main

jobs:
lint:
check-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -18,17 +18,17 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '21'
node-version: '16'

- name: Install dependencies
run: npm install

- name: Run lint
run: npm run lint

test:
run-tests:
runs-on: ubuntu-latest
needs: lint
needs: check-lint
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
1 change: 0 additions & 1 deletion src/caches/ttl.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Cache } from './cache'
import { TTLParams, Keyable } from '../types'
import { SizeError } from '../utils'

/**
* ### About
Expand Down

0 comments on commit f5612dc

Please sign in to comment.