Files
smtp-proxy/node_modules/smtp-server/.github/workflows/test.yml
Alex Rennie-Lis 299aacd2a4 Initial commit
2026-05-01 10:09:51 +01:00

22 lines
499 B
YAML

name: Run tests
on:
push:
pull_request:
jobs:
test:
strategy:
matrix:
node: [18.x, 20.x, 22.x, 24.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test