77 lines
2.3 KiB
YAML
77 lines
2.3 KiB
YAML
# NOTE: Changes to this file should also be applied to './test.yml'
|
|
|
|
name: Node.js Tests - Windows
|
|
|
|
# **What it does**: This runs our tests on Windows.
|
|
# **Why we have it**: We want to support Windows contributors to docs.
|
|
# **Who does it impact**: Anyone working on docs on a Windows device.
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '50 19 * * *' # once a day at 19:50 UTC / 11:50 PST
|
|
|
|
permissions:
|
|
contents: 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:
|
|
runs-on: windows-latest
|
|
if: (github.event_name != 'pull_request') || (github.event_name == 'pull_request' && (contains(github.event.pull_request.labels.*.name, 'Windows') || contains(github.event.pull_request.labels.*.name, 'windows')))
|
|
timeout-minutes: 60
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
test-group:
|
|
[
|
|
content,
|
|
graphql,
|
|
meta,
|
|
rendering,
|
|
routing,
|
|
unit,
|
|
linting,
|
|
translations,
|
|
]
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
|
|
with:
|
|
# Enables cloning the Early Access repo later with the relevant PAT
|
|
persist-credentials: 'false'
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561
|
|
with:
|
|
node-version: 16.13.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') }}
|
|
|
|
- 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: npm test -- tests/${{ matrix.test-group }}/
|