Skip to content

Commit 8aec3a8

Browse files
committed
fixup!
1 parent 3702ac0 commit 8aec3a8

5 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ jobs:
6565
# We want to ensure we have enough RAM allocated to the Node.js process
6666
# this should be a last resort in case by any chances the build memory gets too high
6767
# but in general this should never happen
68-
NODE_OPTIONS: "--max_old_space_size=4096"
68+
NODE_OPTIONS: '--max_old_space_size=4096'
6969
# We want to ensure that static exports for all locales do not occur on `pull_request` events
7070
NEXT_PUBLIC_STATIC_EXPORT_LOCALE: ${{ github.event_name == 'push' }}

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
name: "CodeQL"
1+
name: 'CodeQL'
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches: ['main']
66
pull_request:
77
# The branches below must be a subset of the branches above
8-
branches: ["main"]
8+
branches: ['main']
99
schedule:
10-
- cron: "0 0 * * 1"
10+
- cron: '0 0 * * 1'
1111

1212
permissions:
1313
contents: read

.github/workflows/publish-packages.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ name: Publish Packages
55
on:
66
push:
77
paths:
8-
- "packages/**"
8+
- 'packages/**'
99
# For security reasons, this should never be set to anything but `main`
1010
branches: [main]
1111
workflow_dispatch:
1212
inputs:
1313
package:
14-
description: "Specific package to publish (leave empty for all packages)"
14+
description: 'Specific package to publish (leave empty for all packages)'
1515
required: false
1616
type: string
1717

@@ -106,7 +106,7 @@ jobs:
106106
with:
107107
pnpm: true
108108
use-version-file: true
109-
registry-url: "https://registry.npmjs.org"
109+
registry-url: 'https://registry.npmjs.org'
110110

111111
- name: Re-install npm
112112
# TODO: OIDC requires npm >=11.5.1.
@@ -127,9 +127,9 @@ jobs:
127127
if: ${{ github.event_name == 'workflow_dispatch' }}
128128
uses: rtCamp/action-slack-notify@e31e87e03dd19038e411e38ae27cbad084a90661 # 2.3.3
129129
env:
130-
SLACK_COLOR: "#43853D"
130+
SLACK_COLOR: '#43853D'
131131
SLACK_ICON: https://github.com/nodejs.png?size=48
132-
SLACK_TITLE: ":rocket: Package Published: ${{ matrix.package }}"
132+
SLACK_TITLE: ':rocket: Package Published: ${{ matrix.package }}'
133133
SLACK_MESSAGE: |
134134
:package: *Package*: `${{ matrix.package }}` (<https://www.npmjs.com/package/@node-core/${{ matrix.package }}|View on npm>)
135135
:bust_in_silhouette: *Published by*: ${{ github.triggering_actor }}

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
# To guarantee that the Maintained check is occasionally updated. See
77
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
88
schedule:
9-
- cron: "20 7 * * 2"
9+
- cron: '20 7 * * 2'
1010
push:
1111
branches:
1212
- main

.github/workflows/translations-sync.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name: Crowdin Download
88
on:
99
workflow_dispatch: # Allow running when we want to, for events such as urgent translation mistakes or 100% completed languages
1010
schedule:
11-
- cron: "0 5 * * 5" # At 05:00 on Fridays. This guarantees that we have the 72 hour weekend time to review translations.
11+
- cron: '0 5 * * 5' # At 05:00 on Fridays. This guarantees that we have the 72 hour weekend time to review translations.
1212

1313
# Cancel any runs on the same branch
1414
concurrency:
@@ -46,9 +46,9 @@ jobs:
4646
download_translations: true
4747
localization_branch_name: ${{ env.BRANCH_NAME }}
4848
create_pull_request: true
49-
pull_request_title: "[automated]: crowdin sync"
50-
pull_request_body: "New Crowdin translations from the [Node.js Crowdin project](https://crowdin.com/project/nodejs-web)"
51-
commit_message: "chore: synced translations from crowdin"
49+
pull_request_title: '[automated]: crowdin sync'
50+
pull_request_body: 'New Crowdin translations from the [Node.js Crowdin project](https://crowdin.com/project/nodejs-web)'
51+
commit_message: 'chore: synced translations from crowdin'
5252
env:
5353
GITHUB_TOKEN: ${{ secrets.CROWDIN_GITHUB_BOT_TOKEN }}
5454
# A numeric ID, found at https://crowdin.com/project/nodejs-web/tools/api
@@ -107,8 +107,8 @@ jobs:
107107
- name: Push Changes back to Pull Request
108108
uses: stefanzweifel/git-auto-commit-action@778341af668090896ca464160c2def5d1d1a3eb0 # v6.0.1
109109
with:
110-
commit_options: "--no-verify --signoff"
111-
commit_message: "chore: automated format of translated files"
110+
commit_options: '--no-verify --signoff'
111+
commit_message: 'chore: automated format of translated files'
112112
branch: ${{ env.BRANCH_NAME }}
113113

114114
- name: Save Lint Cache

0 commit comments

Comments
 (0)