Skip to content

update example

update example #296

name: test-older-node
on:
push:
concurrency:
group: test-older-node-branch-node-${{ github.ref }}
cancel-in-progress: true
# TODO : delete this workflow on next major if we drop node 12, 14, 16 and 18
jobs:
test-older-node:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
with:
node-version: ${{ matrix.node }}
- run: |
NPM_CONFIG_ENGINE_STRICT=false npm install --ignore-scripts
- run: npm run test:json