node-ebics-client/.github/workflows/CI.yml

24 lines
442 B
YAML
Raw Permalink Normal View History

name: CI
on:
push:
2023-10-11 19:27:08 +00:00
branches: [ main, master ]
pull_request:
2023-10-11 19:27:08 +00:00
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2023-10-11 19:28:23 +00:00
node: [ 18, 19, 20 ]
name: Node.js ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test