chore(deps-dev): bump fast-uri from 3.1.2 to 3.1.7 #3069
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: Check | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'upcoming' | |
| pull_request: | |
| branches: | |
| - '**' | |
| # Called by the "Publish upcoming snapshot to npm" orchestrator on push to `upcoming`. | |
| workflow_call: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install npm deps | |
| run: npm ci | |
| - name: Commit linting | |
| uses: wagoid/commitlint-github-action@v2 | |
| - name: Dependency check | |
| run: npm run depcheck | |
| - name: Check typings | |
| run: npm run check | |
| - name: Check build | |
| run: npm run build | |
| - name: Code linting | |
| run: npm run lint | |
| env: | |
| CI: true | |
| - name: Trigger API Docs update PR | |
| uses: peter-evans/repository-dispatch@v4 | |
| if: github.ref == 'refs/heads/master' | |
| with: | |
| token: ${{ secrets.REPO_GHA_PAT }} | |
| repository: ethersphere/bee-js-docs | |
| event-type: trigger-api-docs-pr |