Merge pull request #534 from codeceptjs/dependabot/npm_and_yarn/maste… #177
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
# This to verify lib version bump doesn't break anything | |
name: Building docs testing | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
publish-npm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
registry-url: https://registry.npmjs.org/ | |
- run: git config --global user.name "GitHub CD bot" | |
- run: git config --global user.email "github-cd-bot@example.com" | |
- name: Install deps | |
run: npm i | |
- name: Build docs | |
run: npm run build | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |