Skip to content

Commit

Permalink
fix(deps): update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kuus committed Apr 8, 2022
1 parent 5dbdb85 commit 1dfd774
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
with:
node-version: 14

# - name: Cache npm
# uses: actions/cache@v2
# with:
# path: .npm
# key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
# restore-keys: |
# ${{ runner.os }}-npm-
# ${{ runner.os }}-
- name: Cache npm
uses: actions/cache@v2
with:
path: .npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
${{ runner.os }}-
- name: Install Dependencies
run: npm ci --cache .npm
Expand Down
2 changes: 1 addition & 1 deletion packages/core/api-git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class ApiGit extends Api {
} catch (_e) {
if (this.debug) {
console.error(
`[@kjam/core] ApiGit::getData failed parsing JSON at '${path}'`
`[@kjam/core]: ApiGit::getData failed parsing JSON at '${path}'`
);
}
return failedReturn;
Expand Down

0 comments on commit 1dfd774

Please sign in to comment.