build: bump follow-redirects from 1.15.11 to 1.16.0 #2566
Workflow file for this run
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: CI | |
| env: | |
| node-version: 24 | |
| on: | |
| push: | |
| branches: [main] | |
| tags: | |
| - v[0-9]+.[0-9]+.[0-9]+ | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| name: Testing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Get source | |
| uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ env.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ env.node-version }} | |
| cache: 'npm' | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - name: Install cspell | |
| run: npm install cspell | |
| - name: Linting | |
| run: npm run lint | |
| - name: Testing | |
| if: ${{ !env.ACT }} | |
| run: npm run test | |
| pack: | |
| name: Packaging | |
| needs: test | |
| if: startsWith(github.ref, 'refs/tags/') || github.event.act | |
| defaults: | |
| run: | |
| shell: bash | |
| strategy: | |
| matrix: | |
| include: | |
| - platform: linux | |
| runner: ubuntu-latest | |
| - platform: win | |
| runner: windows-latest | |
| - platform: macos | |
| runner: macos-latest | |
| runs-on: ${{ matrix.runner }} | |
| steps: | |
| - name: Get source | |
| uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ env.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ env.node-version }} | |
| cache: 'npm' | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - name: Create executables | |
| run: | | |
| TARGET=node${{ env.node-version }}-${{ matrix.platform }}-x64 | |
| npm run pkg -- -t ${TARGET} src/cli-search.mjs --output dist/ieeeSearch | |
| npm run pkg -- -t ${TARGET} src/cli-logic.mjs --output dist/ieeeLogic | |
| npm run pkg -- -t ${TARGET} src/cli-count.mjs --output dist/ieeeCount | |
| - name: Tar files | |
| working-directory: ./dist | |
| run: | | |
| [[ "${{ matrix.platform }}" == "macos" ]] && TAR=gtar || TAR=tar | |
| XZ_OPT=-0 ${TAR} -cJvf ../${{ runner.os }}-x64.tar.xz * | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 # act needs this version pinned | |
| with: | |
| name: ${{ runner.os }} | |
| path: ${{ runner.os }}-x64.tar.xz | |
| compression-level: 0 | |
| publish: | |
| name: Publish to Github Releases | |
| runs-on: ubuntu-latest | |
| needs: pack | |
| if: startsWith(github.ref, 'refs/tags/') || github.event.act | |
| steps: | |
| - name: Get source | |
| uses: actions/checkout@v6 | |
| - name: Generate release body | |
| run: bin/github_release_body.sh | |
| - name: Download artifacts | |
| uses: actions/download-artifact@v4 # act needs this version pinned | |
| with: | |
| path: dist/ | |
| - name: Move artifacts | |
| working-directory: dist/ | |
| run: find . -type f -exec mv -v '{}' . \; | |
| - name: Create a release | |
| uses: ncipollo/release-action@v1 | |
| if: ${{ !env.ACT }} | |
| with: | |
| allowUpdates: true | |
| artifacts: dist/*.tar.xz | |
| draft: true | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| bodyFile: RELEASE.md |