43 lines
1013 B
YAML
43 lines
1013 B
YAML
name: Run tests
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
permissions:
|
|
checks: write # for coverallsapp/github-action to create new checks
|
|
contents: read # for actions/checkout to fetch code
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- node-red-version: 3
|
|
node-version: 20
|
|
- node-red-version: 3
|
|
node-version: 18
|
|
- node-red-version: 3
|
|
node-version: 16
|
|
- node-red-version: 3
|
|
node-version: 14
|
|
- node-red-version: 2
|
|
node-version: 12
|
|
- node-red-version: 1
|
|
node-version: 12
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: Install Dependencies
|
|
run: |
|
|
npm install
|
|
npm install node-red@${{ matrix.node-red-version}}
|
|
- name: Run tests
|
|
run: npm test
|