Bump postcss-preset-env in the all-dependencies group #155
Workflow file for this run
This file contains 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 and 16 | |
jobs: | |
test-older-node: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [14, 16] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: | | |
NPM_CONFIG_ENGINE_STRICT=false npm install --ignore-scripts | |
- run: npm run test:json |