Files
FEDEO/test/imaps/node_modules/mailparser/.github/workflows/test.yml
Florian Federspiel 677030f712 Initial
2023-11-25 16:53:52 +01:00

22 lines
507 B
YAML

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