1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-29 16:30:56 -05:00

don't run twice for now

This commit is contained in:
Luca Casonato 2021-03-05 18:47:12 +01:00
parent ddeea9bf87
commit ecfc942b7e
No known key found for this signature in database
GPG key ID: 789878CF6382A84F
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,6 @@
{ {
"name": "ci", "name": "ci",
"on": [ "on": [
"push",
"pull_request" "pull_request"
], ],
"jobs": { "jobs": {

View file

@ -120,7 +120,8 @@ function generateBuildJobs(): Record<string, unknown> {
const ci = { const ci = {
name: "ci", name: "ci",
on: ["push", "pull_request"], // FIXME
on: [/*"push",*/ "pull_request"],
jobs: { jobs: {
...generateBuildJobs(), ...generateBuildJobs(),
}, },