zh-CN: update web/javascript/reference/operators #5618
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
# Checks the PR itself for hygiene things. | |
name: PR Lint | |
on: | |
pull_request: | |
# Necessary to re-run if someone edits the PR without a new pushed commit. | |
types: [opened, edited, synchronize, reopened] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: mdn/translated-content | |
- uses: actions/checkout@v2 | |
with: | |
repository: mdn/content | |
path: mdn/content | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: "12" | |
- name: Install all yarn packages | |
working-directory: ${{ github.workspace }}/mdn/content/pr-lint | |
run: | | |
yarn --frozen-lockfile | |
- name: Run checks | |
working-directory: ${{ github.workspace }}/mdn/content/pr-lint | |
run: | | |
yarn run check |