2020-10-15 19:40:33 +00:00
|
|
|
name: JavaScript Tests
|
|
|
|
|
|
|
|
on:
|
2021-02-24 19:34:41 +00:00
|
|
|
# JavaScript testing was introduced in WordPress 3.8.
|
2020-10-15 19:40:33 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-03-02 15:26:03 +00:00
|
|
|
- trunk
|
2021-02-12 16:01:54 +00:00
|
|
|
- '3.[89]'
|
|
|
|
- '[4-9].[0-9]'
|
|
|
|
tags:
|
|
|
|
- '3.[89]*'
|
|
|
|
- '[4-9].[0-9]*'
|
2020-10-15 19:40:33 +00:00
|
|
|
pull_request:
|
2021-02-24 19:34:41 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2021-03-02 15:26:03 +00:00
|
|
|
- trunk
|
2021-02-24 19:34:41 +00:00
|
|
|
- '3.[89]'
|
|
|
|
- '[4-9].[0-9]'
|
2021-03-02 19:57:15 +00:00
|
|
|
paths:
|
|
|
|
# Any change to a JavaScript file should run tests.
|
|
|
|
- '**.js'
|
|
|
|
# These files configure NPM. Changes could affect the outcome.
|
|
|
|
- 'package*.json'
|
|
|
|
# This file configures ESLint. Changes could affect the outcome.
|
|
|
|
- '.eslintignore'
|
|
|
|
# This file configures JSHint. Changes could affect the outcome.
|
|
|
|
- '.jshintrc'
|
|
|
|
# Any change to the QUnit directory should run tests.
|
|
|
|
- 'tests/qunit/**'
|
|
|
|
# Changes to workflow files should always verify all workflows are successful.
|
|
|
|
- '.github/workflows/*.yml'
|
2021-03-26 13:06:43 +00:00
|
|
|
workflow_dispatch:
|
2020-10-15 19:40:33 +00:00
|
|
|
|
2021-05-19 17:36:54 +00:00
|
|
|
# Cancels all previous workflow runs for pull requests that have not completed.
|
|
|
|
concurrency:
|
|
|
|
# The concurrency group contains the workflow name and the branch name for pull requests
|
|
|
|
# or the commit hash for any other events.
|
|
|
|
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-10-15 19:40:33 +00:00
|
|
|
jobs:
|
|
|
|
# Runs the QUnit tests for WordPress.
|
|
|
|
#
|
|
|
|
# Performs the following steps:
|
|
|
|
# - Checks out the repository.
|
|
|
|
# - Logs debug information about the runner container.
|
2021-02-09 14:15:50 +00:00
|
|
|
# - Installs NodeJS 14.
|
2020-10-15 19:40:33 +00:00
|
|
|
# - Sets up caching for NPM.
|
|
|
|
# - Logs updated debug information.
|
2020-10-29 01:20:42 +00:00
|
|
|
# _ Installs NPM dependencies using install-changed to hash the `package.json` file.
|
2020-10-15 19:40:33 +00:00
|
|
|
# - Run the WordPress QUnit tests.
|
|
|
|
# - todo: Configure Slack notifications for failing tests.
|
|
|
|
test-js:
|
|
|
|
name: QUnit Tests
|
|
|
|
runs-on: ubuntu-latest
|
2020-12-09 20:05:01 +00:00
|
|
|
if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }}
|
|
|
|
|
2020-10-15 19:40:33 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2021-03-03 20:29:04 +00:00
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
|
2020-10-15 19:40:33 +00:00
|
|
|
|
|
|
|
- name: Log debug information
|
|
|
|
run: |
|
|
|
|
npm --version
|
|
|
|
node --version
|
|
|
|
git --version
|
|
|
|
svn --version
|
|
|
|
|
|
|
|
- name: Install NodeJS
|
2021-03-03 20:29:04 +00:00
|
|
|
uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5
|
2020-10-15 19:40:33 +00:00
|
|
|
with:
|
2020-12-09 20:55:42 +00:00
|
|
|
node-version: 14
|
2020-10-15 19:40:33 +00:00
|
|
|
|
|
|
|
- name: Cache NodeJS modules
|
2021-03-03 20:29:04 +00:00
|
|
|
uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4
|
2020-10-15 19:40:33 +00:00
|
|
|
env:
|
|
|
|
cache-name: cache-node-modules
|
|
|
|
with:
|
|
|
|
# npm cache files are stored in `~/.npm` on Linux/macOS
|
|
|
|
path: ~/.npm
|
|
|
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
|
|
|
|
- name: Log debug information
|
|
|
|
run: |
|
|
|
|
npm --version
|
|
|
|
node --version
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
2021-02-26 22:47:33 +00:00
|
|
|
run: npm ci
|
2020-10-15 19:40:33 +00:00
|
|
|
|
|
|
|
- name: Run QUnit tests
|
|
|
|
run: npm run grunt qunit:compiled
|