* Updated language to reference enabling instead of opt-in * Optimize images * fixing broken link * Update content/get-started/privacy-on-github/about-githubs-use-of-your-data.md Co-authored-by: Felicity Chapman <felicitymay@github.com> * Update content/get-started/privacy-on-github/managing-data-use-settings-for-your-private-repository.md Co-authored-by: Felicity Chapman <felicitymay@github.com> * Update content/get-started/privacy-on-github/managing-data-use-settings-for-your-private-repository.md Co-authored-by: Felicity Chapman <felicitymay@github.com> * Openapi update api.github.com (#26398) * Openapi 3.0 ghae (#26400) * Update OpenAPI Descriptions (#26397) * Fix a change missed in a last minute update (#26389) * change order of some site-policy docs (#26307) * reordering the docs * Create codespace.md * Update README.md * Update README.md * Update codespace.md * Update codespace.md * Update codespace.md * Update codespace.md * Update OpenAPI Descriptions * update preview env app_url to preview.ghdocs.com (#26335) * Fix flag (#26420) * Update codespace.md * Update codespace.md * Update codespace.md * Remove Caddy from preview envs (#26336) * remove caddy from preview envs * fix: remove location from template Co-authored-by: Peter Bengtsson <mail@peterbe.com> * Add `Ignore commits in the blame view` to blame docs (#26017) * Connect addendum deprecation (#26296) * temporarily commented out * also comment out * also comment out Co-authored-by: Jenni Christensen <97056108+dihydroJenoxide@users.noreply.github.com> Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Felicity Chapman <felicitymay@github.com> Co-authored-by: Rachael Sewell <rachmari@github.com> Co-authored-by: github-openapi-bot <69533958+github-openapi-bot@users.noreply.github.com> Co-authored-by: Abby Vollmer <vollmera@users.noreply.github.com> Co-authored-by: hubwriter <hubwriter@github.com> Co-authored-by: docubot <67483024+docubot@users.noreply.github.com> Co-authored-by: Mike Surowiec <mikesurowiec@users.noreply.github.com> Co-authored-by: Matt Pollard <mattpollard@users.noreply.github.com> Co-authored-by: Peter Bengtsson <mail@peterbe.com> Co-authored-by: Jason Etcovitch <jasonetco@github.com> Co-authored-by: Billy Rusteen <birust@github.com>
142 lines
5.0 KiB
YAML
142 lines
5.0 KiB
YAML
name: Node.js Tests
|
|
|
|
# **What it does**: Runs our tests.
|
|
# **Why we have it**: We want our tests to pass before merging code.
|
|
# **Who does it impact**: Docs engineering, open-source engineering contributors.
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- gh-readonly-queue/main/**
|
|
|
|
permissions:
|
|
contents: read
|
|
# Needed for the 'trilom/file-changes-action' action
|
|
pull-requests: read
|
|
|
|
# This allows a subsequently queued workflow run to interrupt previous runs
|
|
concurrency:
|
|
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
# Run on self-hosted if the private repo or ubuntu-latest if the public repo
|
|
# See pull # 17442 in the private repo for context
|
|
runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }}
|
|
timeout-minutes: 60
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
# The same array lives in test-windows.yml, so make any updates there too.
|
|
test-group: [
|
|
content,
|
|
graphql,
|
|
meta,
|
|
rendering,
|
|
routing,
|
|
unit,
|
|
# linting,
|
|
translations,
|
|
]
|
|
steps:
|
|
# Each of these ifs needs to be repeated at each step to make sure the required check still runs
|
|
# Even if if doesn't do anything
|
|
- name: Check out repo
|
|
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
|
|
with:
|
|
lfs: true
|
|
# Enables cloning the Early Access repo later with the relevant PAT
|
|
persist-credentials: 'false'
|
|
|
|
- name: Figure out which docs-early-access branch to checkout, if internal repo
|
|
if: ${{ github.repository == 'github/docs-internal' }}
|
|
id: check-early-access
|
|
uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d
|
|
env:
|
|
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
|
with:
|
|
github-token: ${{ secrets.DOCUBOT_REPO_PAT }}
|
|
result-encoding: string
|
|
script: |
|
|
// If being run from a PR, this becomes 'my-cool-branch'.
|
|
// If run on main, with the `workflow_dispatch` action for
|
|
// example, the value becomes 'main'.
|
|
const { BRANCH_NAME } = process.env
|
|
try {
|
|
const response = await github.repos.getBranch({
|
|
owner: 'github',
|
|
repo: 'docs-early-access',
|
|
BRANCH_NAME,
|
|
})
|
|
console.log(`Using docs-early-access branch called '${BRANCH_NAME}'.`)
|
|
return BRANCH_NAME
|
|
} catch (err) {
|
|
if (err.status === 404) {
|
|
console.log(`There is no docs-early-access branch called '${BRANCH_NAME}' so checking out 'main' instead.`)
|
|
return 'main'
|
|
}
|
|
throw err
|
|
}
|
|
|
|
- name: Check out docs-early-access too, if internal repo
|
|
if: ${{ github.repository == 'github/docs-internal' }}
|
|
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
|
|
with:
|
|
repository: github/docs-early-access
|
|
token: ${{ secrets.DOCUBOT_REPO_PAT }}
|
|
path: docs-early-access
|
|
ref: ${{ steps.check-early-access.outputs.result }}
|
|
|
|
- name: Merge docs-early-access repo's folders
|
|
if: ${{ github.repository == 'github/docs-internal' }}
|
|
run: |
|
|
mv docs-early-access/assets assets/images/early-access
|
|
mv docs-early-access/content content/early-access
|
|
mv docs-early-access/data data/early-access
|
|
rm -r docs-early-access
|
|
|
|
- name: Checkout LFS objects
|
|
run: git lfs checkout
|
|
|
|
# - name: Gather files changed
|
|
# uses: trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b
|
|
# id: get_diff_files
|
|
# with:
|
|
# # So that `steps.get_diff_files.outputs.files` becomes
|
|
# # a string like `foo.js path/bar.md`
|
|
# output: ' '
|
|
|
|
# - name: Insight into changed files
|
|
# run: |
|
|
|
|
# # Must to do this because the list of files can be HUGE. Especially
|
|
# # in a repo-sync when there are lots of translation files involved.
|
|
# echo "${{ steps.get_diff_files.outputs.files }}" > get_diff_files.txt
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561
|
|
with:
|
|
node-version: 16.14.x
|
|
cache: npm
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Cache nextjs build
|
|
uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed
|
|
with:
|
|
path: .next/cache
|
|
key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }}
|
|
|
|
- name: Run build script
|
|
run: npm run build
|
|
|
|
- name: Run tests
|
|
env:
|
|
# DIFF_FILE: get_diff_files.txt
|
|
CHANGELOG_CACHE_FILE_PATH: tests/fixtures/changelog-feed.json
|
|
run: npm test -- tests/${{ matrix.test-group }}/
|