fix breaking dependency issues introduced in v3.2.0 (#149) #335
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '*.md' | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '*.md' | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| CI: true | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| node-version: | |
| - 20 | |
| experimental: [false] | |
| include: | |
| - node-version: lts/* | |
| experimental: true | |
| continue-on-error: ${{ matrix.experimental }} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.node-version }}-${{ matrix.experimental }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Check repository dependency graph | |
| uses: actions/dependency-review-action@595b5aeba73380359d98a5e087f648dbb0edce1b # v4.7.3 | |
| if: ${{ github.event_name == 'pull_request' }} | |
| - name: Setup Node.js v${{ matrix.node-version }} | |
| uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - name: NPM config | |
| run: | | |
| npm pkg delete scripts.prepare | |
| npm install --ignore-scripts --pure-lockfile | |
| - name: Build | |
| run: npm run build --if-present | |
| - name: Test | |
| run: npm run test --if-present |