Skip to content

Commit 4d4c0cf

Browse files
committed
Add integration tests with ProFTPD
1 parent aab681b commit 4d4c0cf

6 files changed

Lines changed: 2771 additions & 30 deletions

File tree

.github/workflows/integration.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Integration Tests
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
integration:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v6
15+
- name: Use Node.js 22.x
16+
uses: actions/setup-node@v6
17+
with:
18+
node-version: 22.x
19+
- run: npm ci
20+
- run: npm run test:integration
21+
env:
22+
# Ryuk (testcontainers cleanup container) can be flaky on GitHub runners
23+
TESTCONTAINERS_RYUK_DISABLED: "true"

0 commit comments

Comments
 (0)