diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:35:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:35:49 +0000 |
commit | d8bbc7858622b6d9c278469aab701ca0b609cddf (patch) | |
tree | eff41dc61d9f714852212739e6b3738b82a2af87 /taskcluster/ci/source-test/node.yml | |
parent | Releasing progress-linux version 125.0.3-1~progress7.99u1. (diff) | |
download | firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.tar.xz firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.zip |
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | taskcluster/ci/source-test/node.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/taskcluster/ci/source-test/node.yml b/taskcluster/ci/source-test/node.yml index f1df46b73d..1d8c8348fb 100644 --- a/taskcluster/ci/source-test/node.yml +++ b/taskcluster/ci/source-test/node.yml @@ -184,3 +184,38 @@ eslint-plugin-mozilla: when: files-changed: - 'tools/lint/eslint/eslint-plugin-mozilla/**' + +design-tokens-tests: + description: design tokens unit tests + platform: linux1804-64/opt + treeherder: + symbol: node(design-tokens) + kind: test + tier: 1 + worker-type: t-linux-xlarge-source + worker: + docker-image: {in-tree: "ubuntu1804-test"} + max-run-time: 1800 + require-build: + by-project: + autoland: + linux1804-64/opt: build-linux64/opt + try: + linux1804-64/opt: build-linux64/opt + default: + linux1804-64/opt: build-linux64-shippable/opt + run: + using: run-task + cache-dotcache: true + cwd: '{checkout}' + command: > + cd /builds/worker/checkouts/gecko && + rm -rf node_modules && + npm ci && + cd /builds/worker/checkouts/gecko/toolkit/themes/shared/design-system && + rm -rf node_modules && + npm ci && + node tests/try-runner.js + when: + files-changed: + - "toolkit/themes/shared/design-system/**" |