2020-06-14 16:46:49 +00:00
|
|
|
import * as cacheWrapper from './cache-wrapper'
|
2020-06-15 10:59:55 +00:00
|
|
|
import * as cacheDependencies from './cache-dependencies'
|
2020-06-15 13:58:20 +00:00
|
|
|
import * as cacheConfiguration from './cache-configuration'
|
2020-06-13 11:34:07 +00:00
|
|
|
|
|
|
|
// Invoked by GitHub Actions
|
2020-06-13 11:54:27 +00:00
|
|
|
export async function run(): Promise<void> {
|
2020-06-14 16:46:49 +00:00
|
|
|
await cacheWrapper.cacheWrapperDist()
|
2020-06-15 10:59:55 +00:00
|
|
|
await cacheDependencies.cacheDependencies()
|
2020-06-15 13:58:20 +00:00
|
|
|
await cacheConfiguration.cacheConfiguration()
|
2020-06-13 11:34:07 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 11:44:30 +00:00
|
|
|
run()
|