From 598ba4c3c3837871f592fb1a7859f549ab534bbf Mon Sep 17 00:00:00 2001 From: Keisuke Umeno <9renpoto@gmail.com> Date: Mon, 30 Dec 2024 09:27:17 +0900 Subject: [PATCH] chore: s/ubuntu-latest/ubuntu-22.04/ --- .github/workflows/actionlint.yml | 2 +- .github/workflows/bump.yml | 2 +- .github/workflows/dependabot.yml | 2 +- .github/workflows/nodejs.yml | 2 +- .github/workflows/npm-publish-packages.yml | 4 ++-- example/src/schema.gql | 18 +++++++++++++----- packages/nestjs-firebase/package.json | 5 +---- packages/nestjs-graphql-relay/package.json | 6 +----- packages/nestjs-slack-webhook/package.json | 5 +---- packages/nestjs-zendesk/package.json | 5 +---- 10 files changed, 23 insertions(+), 28 deletions(-) diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml index 875a07e5..e2ba6d40 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -12,7 +12,7 @@ concurrency: jobs: actionlint: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - uses: reviewdog/action-actionlint@v1 diff --git a/.github/workflows/bump.yml b/.github/workflows/bump.yml index dad9c04d..c5e4e8f6 100644 --- a/.github/workflows/bump.yml +++ b/.github/workflows/bump.yml @@ -20,7 +20,7 @@ on: type: string jobs: bump: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml index 9226b1f2..570b35b2 100644 --- a/.github/workflows/dependabot.yml +++ b/.github/workflows/dependabot.yml @@ -14,7 +14,7 @@ permissions: jobs: dependabot: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 if: github.actor == 'dependabot[bot]' steps: - name: Dependabot metadata diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 669d4ed4..f82e03fc 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -6,7 +6,7 @@ on: jobs: build: timeout-minutes: 3 - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: matrix: node-version: [lts/*, latest] diff --git a/.github/workflows/npm-publish-packages.yml b/.github/workflows/npm-publish-packages.yml index 144836a4..5dc32fbe 100644 --- a/.github/workflows/npm-publish-packages.yml +++ b/.github/workflows/npm-publish-packages.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -23,7 +23,7 @@ jobs: publish-gpr: needs: build - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 diff --git a/example/src/schema.gql b/example/src/schema.gql index c0fbfbce..118b5977 100644 --- a/example/src/schema.gql +++ b/example/src/schema.gql @@ -39,16 +39,24 @@ type RecipesEdge { type Query { node(id: ID!): Node recipes( - """Paginate before opaque cursor""" + """ + Paginate before opaque cursor + """ before: String - """Paginate after opaque cursor""" + """ + Paginate after opaque cursor + """ after: String - """Paginate first""" + """ + Paginate first + """ first: Int - """Paginate last""" + """ + Paginate last + """ last: Int where: RecipeWhereInput orderBy: OrderByInput @@ -67,4 +75,4 @@ input OrderByInput { enum OrderByDirection { ASC DESC -} \ No newline at end of file +} diff --git a/packages/nestjs-firebase/package.json b/packages/nestjs-firebase/package.json index 92fd9795..5654ff2c 100644 --- a/packages/nestjs-firebase/package.json +++ b/packages/nestjs-firebase/package.json @@ -10,10 +10,7 @@ "clean": "tsc --build --clean", "lint": "tsc -p . --noEmit" }, - "keywords": [ - "nest", - "firebase" - ], + "keywords": ["nest", "firebase"], "peerDependencies": { "@nestjs/common": "^10.0.0", "firebase-admin": "^10.0.0 || ^11.0.0 || ^12.0.0" diff --git a/packages/nestjs-graphql-relay/package.json b/packages/nestjs-graphql-relay/package.json index 44ef3fdc..64b3bda1 100644 --- a/packages/nestjs-graphql-relay/package.json +++ b/packages/nestjs-graphql-relay/package.json @@ -17,11 +17,7 @@ "clean": "tsc --build --clean", "lint": "tsc -p . --noEmit" }, - "keywords": [ - "nest", - "graphql-relay", - "typeorm" - ], + "keywords": ["nest", "graphql-relay", "typeorm"], "peerDependencies": { "@apollo/gateway": "^2.0.0", "@nestjs/graphql": "^12.0.0", diff --git a/packages/nestjs-slack-webhook/package.json b/packages/nestjs-slack-webhook/package.json index fd795e3d..55f8cfc4 100644 --- a/packages/nestjs-slack-webhook/package.json +++ b/packages/nestjs-slack-webhook/package.json @@ -17,10 +17,7 @@ "clean": "tsc --build --clean", "lint": "tsc -p . --noEmit" }, - "keywords": [ - "nest", - "slack-webhook" - ], + "keywords": ["nest", "slack-webhook"], "peerDependencies": { "@nestjs/common": "^10.0.0", "@slack/webhook": "^6.0.0 || ^7.0.0" diff --git a/packages/nestjs-zendesk/package.json b/packages/nestjs-zendesk/package.json index 603139c8..889af08f 100644 --- a/packages/nestjs-zendesk/package.json +++ b/packages/nestjs-zendesk/package.json @@ -18,10 +18,7 @@ "clean": "tsc --build --clean", "lint": "tsc -p . --noEmit" }, - "keywords": [ - "nest", - "zendesk" - ], + "keywords": ["nest", "zendesk"], "peerDependencies": { "node-zendesk": "^5.0.0" },