diff options
author | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-21 16:02:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-21 15:02:22 +0100 |
commit | c8086013f30c1b6428c94b2898151336195703bf (patch) | |
tree | 9b46e9c4e4ae540056ea2289810ff04762662c63 /.github/workflows | |
parent | 034f07389304adef516a375feebbf408f1399be6 (diff) | |
download | translated-content-c8086013f30c1b6428c94b2898151336195703bf.tar.gz translated-content-c8086013f30c1b6428c94b2898151336195703bf.tar.bz2 translated-content-c8086013f30c1b6428c94b2898151336195703bf.zip |
Delete PR lint workflow which depends on removed mdn/content workflow (#2810)
Fixes #2809
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/pr-lint.yml | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml deleted file mode 100644 index 6b32fe1168..0000000000 --- a/.github/workflows/pr-lint.yml +++ /dev/null @@ -1,37 +0,0 @@ -# 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/setup-node@v2.1.4 - 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 |