1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
This commit is contained in:
Luca Casonato 2021-03-05 18:41:33 +01:00
parent c165096973
commit ddeea9bf87
No known key found for this signature in database
GPG key ID: 789878CF6382A84F
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
# THIS FILE IS AUTOGENERATED USING ./tools/get_workflow.yml # THIS FILE IS AUTOGENERATED USING ./tools/get_workflow.yml
{ {
"name": "ci", "name": "ci",
"runs-on": [ "on": [
"push", "push",
"pull_request" "pull_request"
], ],

View file

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