This commit is contained in:
SamKirkland 2022-09-03 17:37:57 -05:00
parent ed91728692
commit 1b21034a8d
3 changed files with 9 additions and 9 deletions

View File

@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: 📂 Sync files - name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.1 uses: SamKirkland/FTP-Deploy-Action@4.3.2
with: with:
server: ftp.samkirkland.com server: ftp.samkirkland.com
username: myFtpUserName username: myFtpUserName
@ -99,7 +99,7 @@ jobs:
npm run build npm run build
- name: 📂 Sync files - name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.1 uses: SamKirkland/FTP-Deploy-Action@4.3.2
with: with:
server: ftp.samkirkland.com server: ftp.samkirkland.com
username: myFtpUserName username: myFtpUserName
@ -119,7 +119,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: 📂 Sync files - name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.1 uses: SamKirkland/FTP-Deploy-Action@4.3.2
with: with:
server: ftp.samkirkland.com server: ftp.samkirkland.com
username: myFtpUserName username: myFtpUserName
@ -142,7 +142,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: 📂 Sync files - name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.1 uses: SamKirkland/FTP-Deploy-Action@4.3.2
with: with:
server: ftp.samkirkland.com server: ftp.samkirkland.com
username: myFtpUserName username: myFtpUserName
@ -164,7 +164,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: 📂 Sync files - name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.1 uses: SamKirkland/FTP-Deploy-Action@4.3.2
with: with:
server: ftp.samkirkland.com server: ftp.samkirkland.com
username: myFtpUserName username: myFtpUserName

View File

@ -1,3 +0,0 @@
module.exports = {
preset: "ts-jest"
};

View File

@ -1,6 +1,6 @@
{ {
"name": "ftp-deploy-action", "name": "ftp-deploy-action",
"version": "4.3.1", "version": "4.3.2",
"private": true, "private": true,
"description": "Automate deploying websites and more with this GitHub action", "description": "Automate deploying websites and more with this GitHub action",
"main": "dist/index.js", "main": "dist/index.js",
@ -37,5 +37,8 @@
"eslint": "^8.22.0", "eslint": "^8.22.0",
"eslint-plugin-jest": "^26.8.7", "eslint-plugin-jest": "^26.8.7",
"typescript": "^4.7.4" "typescript": "^4.7.4"
},
"jest": {
"preset": "ts-jest"
} }
} }