1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 19:34:34 +00:00

chore: updated to lts node version

This commit is contained in:
Saad Jutt
2021-11-09 19:05:43 +05:00
parent 9a86419d7a
commit 3fad8e94f5
3 changed files with 5 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
node-version: [12.x]
node-version: [lts/*]
steps:
- uses: actions/checkout@v2
@@ -32,7 +32,7 @@ jobs:
strategy:
matrix:
node-version: [12.x]
node-version: [lts/*]
steps:
- uses: actions/checkout@v2
@@ -65,7 +65,7 @@ jobs:
strategy:
matrix:
node-version: [12.x]
node-version: [lts/*]
steps:
- uses: actions/checkout@v2

View File

@@ -1,5 +1,4 @@
export * from './deploy'
export * from './drive'
export * from './Session'
export * from './Execution'
export * from './FileUploadController'

View File

@@ -1,6 +1,7 @@
import express from 'express'
import path from 'path'
import { DriveController, ExecutionController } from '../../controllers'
import { ExecutionController } from '../../controllers'
import { DriveController } from '../../controllers/drive'
import { isFileQuery } from '../../types'
import { getTmpFilesFolderPath } from '../../utils'