Skip to content

V5 release updates (#365) #271

V5 release updates (#365)

V5 release updates (#365) #271

# This workflow will do a clean installation of node dependencies, cache/restore them,
# build the source code and run tests across different versions of node
# https://docs.github.com/en/actions/use-cases-and-examples/building-and-testing/building-and-testing-nodejs
name: Node.js CI tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
include:
- node-version: 12
LINT: true
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
# this is a library, not an app, so ignore the package-lock
- run: npm install --package-lock=false
- if: ${{ matrix.LINT }}
run: npm run lint
- if: ${{ ! matrix.LINT }}
run: npm run test-ci