Skip to content

Commit

Permalink
misc: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
soomtong committed Feb 26, 2024
1 parent 32dc9e9 commit 285a560
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '20'
- name: Prepare dot npmrc for private registry
run: echo //npm.pkg.github.com/:_authToken=${{ secrets.GH_TOKEN }} >> ~/.npmrc
- name: Bootstrap
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '20'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@day1co'
Expand Down
2 changes: 1 addition & 1 deletion src/InMemoryCache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class InMemoryCache {
this.saveItem(key, data);
}

// should go has check before use it.
// should go has checked before use it.
// therefore, it uses withCache wrapper commonly
getCache(key: string): unknown {
process.nextTick(() => {
Expand Down

0 comments on commit 285a560

Please sign in to comment.