improve dark mode #178
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, 16 and 18 | |
jobs: | |
test-older-node: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [14, 16, 18] | |
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 |