Bump the all-dependencies group across 1 directory with 6 updates (#473) #305
  
    
      This file contains hidden or 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: 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 |