This repository has been archived by the owner on Dec 26, 2024. It is now read-only.
build(deps-dev): bump the npm_and_yarn group across 1 directory with 4 updates #2
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: misc | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
- v[0-9]+.x-staging | |
- v[0-9]+.x | |
env: | |
NODE_VERSION: 14.x | |
jobs: | |
build-docs: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Environment Information | |
run: npx envinfo | |
- name: Build | |
run: NODE=$(command -v node) make doc-only | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: docs | |
path: out/doc | |
- name: Test | |
run: NODE=$(command -v node) make test-doc-ci TEST_CI_ARGS="-p actions" |