chore(deps-dev): bump nock from 13.3.8 to 13.4.0 #3476
Workflow file for this run
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: Publish Dev Docs | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "master" | |
jobs: | |
build-and-deploy: | |
name: Build and Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: "16.17.0" | |
- name: Install dependencies | |
run: npm ci | |
- name: Build dev docs | |
run: npm run build:dev-docs | |
- name: Deploy dev docs | |
run: npm run deploy:dev-docs | |
if: >- | |
github.event_name == 'push' | |
env: | |
GITHUB_TOKEN: ${{ secrets.DEV_DOC_DEPLOY_TOKEN }} |