-
Notifications
You must be signed in to change notification settings - Fork 608
/
.taskcluster.yml
37 lines (37 loc) · 1.17 KB
/
.taskcluster.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: 1
policy:
pullRequests: public
tasks:
$let:
head_rev:
$if: 'tasks_for == "github-pull-request"'
then: ${event.pull_request.head.sha}
else: ${event.after}
repository:
$if: 'tasks_for == "github-pull-request"'
then: ${event.pull_request.head.repo.html_url}
else: ${event.repository.html_url}
in:
$match:
'(tasks_for == "github-pull-request" && event["action"] in ["opened","reopened","synchronize"]) || (tasks_for == "github-push")':
taskId:
$eval: as_slugid("pr_task")
provisionerId: proj-misc
workerType: ci
deadline: {$fromNow: '1 day'}
payload:
maxRunTime: 600
image: node
command:
- /bin/bash
- '--login'
- '-c'
- >-
git clone ${repository} repo && cd repo && git config
advice.detachedHead false && git checkout ${head_rev} && npm
install . && npm run lint && npm test
metadata:
name: Run tests and linter
description: ''
owner: '${event.sender.login}@users.noreply.github.com'
source: '${event.repository.url}'