mirror of
git://develop.git.wordpress.org/
synced 2025-03-29 16:22:47 +01:00
This updates the following 3rd party actions: - `actions/setup-node` from `4.2.0` to `4.3.0` - `actions/upload-artifact` from `4.6.0` to `4.6.1` - `ramsey/composer-install` from `3.0.0` to `3.1.0` - `actions/cache` from `4.2.0` to `4.2.2` - `actions/download-artifact` from `4.1.8` to `4.1.9` - `codecov/codecov-action` from `5.3.1` to `5.4.0` See #62221. git-svn-id: https://develop.svn.wordpress.org/trunk@60051 602fd350-edb4-49c9-b593-d223f7449a82
72 lines
2.1 KiB
YAML
72 lines
2.1 KiB
YAML
##
|
|
# A reusable workflow that runs JavaScript tests.
|
|
##
|
|
name: JavaScript tests
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
disable-apparmor:
|
|
description: 'Whether to disable AppArmor.'
|
|
required: false
|
|
type: 'boolean'
|
|
default: false
|
|
|
|
# Disable permissions for all available scopes by default.
|
|
# Any needed permissions should be configured at the job level.
|
|
permissions: {}
|
|
|
|
jobs:
|
|
# Runs the QUnit test suite.
|
|
#
|
|
# Performs the following steps:
|
|
# - Checks out the repository.
|
|
# - Sets up Node.js.
|
|
# - Logs debug information about the GitHub Action runner.
|
|
# - Installs npm dependencies.
|
|
# - Run the WordPress QUnit tests.
|
|
# - Ensures version-controlled files are not modified or deleted.
|
|
test-js:
|
|
name: Run QUnit tests
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
contents: read
|
|
timeout-minutes: 20
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
|
|
persist-credentials: false
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: npm
|
|
|
|
- name: Log debug information
|
|
run: |
|
|
npm --version
|
|
node --version
|
|
git --version
|
|
|
|
- name: Install npm Dependencies
|
|
run: npm ci
|
|
|
|
# Older branches using outdated versions of Puppeteer fail on newer versions of the `ubuntu-24` image.
|
|
# This disables AppArmor in order to work around those failures.
|
|
#
|
|
# See https://issues.chromium.org/issues/373753919
|
|
# and https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md
|
|
- name: Disable AppArmor
|
|
if: ${{ inputs.disable-apparmor }}
|
|
run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
|
|
|
|
- name: Run QUnit tests
|
|
run: npm run grunt qunit:compiled
|
|
|
|
- name: Ensure version-controlled files are not modified or deleted
|
|
run: git diff --exit-code
|