Skip to content

chore(deps): bump ip from 2.0.0 to 2.0.1 or higher last last try #3

chore(deps): bump ip from 2.0.0 to 2.0.1 or higher last last try

chore(deps): bump ip from 2.0.0 to 2.0.1 or higher last last try #3

Workflow file for this run

name: publish-to-test
on:
push:
tags:
- 'test-v*'
jobs:
publish-to-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run the tests
run: npm test
- name: Create build folder
run: npm run build
- name: Installs ncftp
run: sudo apt-get install ncftp
- name: Upload build folder to test environment
run: ncftpput -R -v -u ${{ secrets.FTP_USER_NAME_TEST }} -p ${{ secrets.FTP_PW_TEST }} ${{ secrets.FTP_SERVER_ADDRESS }} ./ build/*