Library & test updates

- Updated NPM packages
- Updated tests to point to correct branch (oops)
This commit is contained in:
SamKirkland 2020-05-01 23:07:16 -05:00
parent 3f7edaa478
commit c926b9df00
4 changed files with 1801 additions and 1968 deletions

View File

@ -9,7 +9,7 @@ jobs:
with: with:
fetch-depth: 2 fetch-depth: 2
- name: FTP-Deploy-Action - name: FTP-Deploy-Action
uses: SamKirkland/FTP-Deploy-Action-Typescript@master uses: SamKirkland/FTP-Deploy-Action@master
with: with:
ftp-server: ftp://ftp.samkirkland.com/ ftp-server: ftp://ftp.samkirkland.com/
ftp-username: ${{ secrets.ftp_username }} ftp-username: ${{ secrets.ftp_username }}

View File

@ -9,7 +9,7 @@ jobs:
with: with:
fetch-depth: 2 fetch-depth: 2
- name: FTP-Deploy-Action - name: FTP-Deploy-Action
uses: SamKirkland/FTP-Deploy-Action-Typescript@master uses: SamKirkland/FTP-Deploy-Action@master
with: with:
# deploy to a folder named "sftp-deploy-test.samkirkland.com" on my server # deploy to a folder named "sftp-deploy-test.samkirkland.com" on my server
ftp-server: sftp://ftp.samkirkland.com:7822/home/samkirkland/sftp-deploy-test.samkirkland.com/ ftp-server: sftp://ftp.samkirkland.com:7822/home/samkirkland/sftp-deploy-test.samkirkland.com/

3747
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@
"description": "TypeScript template action", "description": "TypeScript template action",
"main": "dist/main.js", "main": "dist/main.js",
"engines": { "engines": {
"node": ">=10.0.0" "node": ">=12.0.0"
}, },
"scripts": { "scripts": {
"build:dev": "tsc", "build:dev": "tsc",
@ -25,16 +25,16 @@
"author": "SamKirkland", "author": "SamKirkland",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "1.2.0", "@actions/core": "1.2.4",
"@actions/exec": "1.0.1" "@actions/exec": "1.0.4"
}, },
"devDependencies": { "devDependencies": {
"@types/jest": "24.0.23", "@types/jest": "25.2.1",
"@types/node": "12.12.8", "@types/node": "12.12.8",
"@zeit/ncc": "0.20.5", "@zeit/ncc": "0.22.1",
"jest": "24.9.0", "jest": "25.5.3",
"jest-circus": "24.9.0", "jest-circus": "25.5.3",
"ts-jest": "24.1.0", "ts-jest": "25.4.0",
"typescript": "3.7.2" "typescript": "3.8.3"
} }
} }