Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 53e8d2f

Browse files
committed
Linting
1 parent 3fb833a commit 53e8d2f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@v2
24-
- uses: ./
24+
- name: Install sccache
25+
uses: ./
2526
with:
2627
crate: sccache
2728
- run: sccache --help
@@ -30,7 +31,8 @@ jobs:
3031
runs-on: ubuntu-latest
3132
steps:
3233
- uses: actions/checkout@v2
33-
- uses: ./
34+
- name: Install bat
35+
uses: ./
3436
with:
3537
crate: bat
3638
- run: bat package.json

src/download.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os from "os";
2-
import { promises as fs } from 'fs';
2+
import { promises as fs } from "fs";
33
import path from "path";
44

55
import * as core from "@actions/core";

0 commit comments

Comments
 (0)