75 lines
2.4 KiB
YAML
75 lines
2.4 KiB
YAML
# NOTE: Changes to this file should also be applied to './test-windows.yml'
|
|
|
|
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:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
env:
|
|
CI: 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]
|
|
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@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
|
with:
|
|
# Enables cloning the Early Access repo later with the relevant PAT
|
|
persist-credentials: 'false'
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@c46424eee26de4078d34105d3de3cc4992202b1e
|
|
with:
|
|
node-version: 16.x
|
|
|
|
- name: Get npm cache directory
|
|
id: npm-cache
|
|
run: |
|
|
echo "::set-output name=dir::$(npm config get cache)"
|
|
|
|
- name: Cache node modules
|
|
uses: actions/cache@0781355a23dac32fd3bac414512f4b903437991a
|
|
with:
|
|
path: ${{ steps.npm-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- if: ${{ github.repository == 'github/docs-internal' }}
|
|
name: Clone early access
|
|
run: npm run heroku-postbuild
|
|
env:
|
|
DOCUBOT_REPO_PAT: ${{ secrets.DOCUBOT_REPO_PAT }}
|
|
GIT_BRANCH: ${{ github.head_ref || github.ref }}
|
|
|
|
- if: ${{ github.repository != 'github/docs-internal' }}
|
|
name: Run build script
|
|
run: npm run build
|
|
|
|
- name: Run tests
|
|
run: npx jest tests/${{ matrix.test-group }}/
|
|
env:
|
|
NODE_OPTIONS: '--max_old_space_size=8192'
|