chore(deps): bump got from 15.0.2 to 15.0.3 #24566
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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - next | |
| pull_request: | |
| branches: | |
| - master | |
| - next | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| test-node: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 1 | |
| matrix: | |
| node-version: | |
| - 24.14.0 | |
| - 24.14.1 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v6.0.2 | |
| - name: prepare node | |
| uses: actions/setup-node@v6.4.0 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: install | |
| run: npm ci | |
| - name: test and coverage | |
| run: npm run cover --if-present | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| - name: coveralls | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| flag-name: run-${{ matrix.test_number }} | |
| path-to-lcov: build/coverage/lcov.info | |
| parallel: true | |
| continue-on-error: true | |
| release: | |
| needs: | |
| - test-node | |
| runs-on: | |
| - self-hosted | |
| - linux | |
| - ARM64 | |
| - ubuntu-latest | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| id-token: write | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v6.0.2 | |
| - name: prepare node | |
| uses: actions/setup-node@v6.4.0 | |
| with: | |
| node-version: 24.14.1 | |
| - name: install | |
| run: npm ci | |
| - name: install dependencies | |
| run: | | |
| if [ ! -f /usr/bin/pacman ] | |
| then | |
| sudo apt-get update | |
| sudo apt-get install ksh | |
| sudo apt-get -y install makepkg | |
| fi | |
| - name: release | |
| run: npx semantic-release | |
| env: | |
| CI: "true" | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PKGEXT: .pkg.tar.xz | |
| PKGBUILD_PUBLISH: ${{ secrets.PKGBUILD_PUBLISH }} | |
| finish: | |
| needs: | |
| - test-node | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: finish coveralls | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| path-to-lcov: build/coverage/lcov.info | |
| parallel-finished: true |