Skip to content

testcase: ftp validation - added #27

testcase: ftp validation - added

testcase: ftp validation - added #27

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
paths:
- '**/*.ts'
jobs:
test:
runs-on: ubuntu-latest
services:
ftp:
image: delfer/alpine-ftp-server:latest
ports:
- 21:21
- 21000-21010:21000-21010
options: >-
--name test-ftp-server
--env USERS=one|1234
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: '20'
cache: yarn
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn ci-test