1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-06-23 04:50:22 +02:00

eslint --fix

This commit is contained in:
BSKY 2020-03-18 07:34:57 +09:00
parent cd81a868cf
commit 7143b8e593
6 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,6 @@
import * as core from "@actions/core";
import * as path from "path";
import * as cacheHttpClient from "../src/cacheHttpClient";
import { Events, Inputs } from "../src/constants";
import { ArtifactCacheEntry } from "../src/contracts";

View file

@ -1,5 +1,6 @@
import * as core from "@actions/core";
import * as path from "path";
import * as cacheHttpClient from "../src/cacheHttpClient";
import { Events, Inputs } from "../src/constants";
import { ArtifactCacheEntry } from "../src/contracts";

View file

@ -1,5 +1,6 @@
import * as exec from "@actions/exec";
import * as io from "@actions/io";
import * as tar from "../src/tar";
jest.mock("@actions/exec");