Skip to content

Merge tag '2.1.20' into dev #238

Merge tag '2.1.20' into dev

Merge tag '2.1.20' into dev #238

Workflow file for this run

name: Tests
on:
push:
branches: [dev, rls/*, main]
pull_request:
branches: [dev, rls/*, main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
[16.x, 18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# cache: "npm"
# cache-dependency-path: package-lock.json
- run: |
npm install
npm test
# npm run build --if-present