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