Initial implementation of data-frame node #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
on: | |
- pull_request | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- '18' | |
- '16' | |
node-red: | |
- '^3' | |
- '~3.1' | |
- '~3.0' | |
- '^2' | |
- '~2.1' | |
- '~2.0' | |
name: Tests (Node ${{ matrix.node }} - node-red ${{ matrix.node-red }}) | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Install exact version of node-red | |
run: npm install --save-dev node-red@${{ matrix.node-red }} | |
- name: Run tests | |
run: npm run ci:test |