Skip to content

Commit a553a6b

Browse files
committed
style: double quotes in yaml
1 parent 65ec43e commit a553a6b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/nodejs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
schedule:
88
# Check if it works with current dependencies
9-
- cron: '42 2 * * 6' # weekly on Saturday 2:42 UTC
9+
- cron: "42 2 * * 6" # weekly on Saturday 2:42 UTC
1010

1111
jobs:
1212
test:
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 'lts/*'
19+
node-version: "lts/*"
2020
- uses: actions/checkout@v4
2121
- run: npm install
2222
- run: npm test

.github/workflows/npm.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: actions/setup-node@v4
1717
with:
18-
node-version: 'lts/*'
19-
registry-url: 'https://registry.npmjs.org'
18+
node-version: "lts/*"
19+
registry-url: "https://registry.npmjs.org"
2020
- run: npm install
2121
- run: npm publish --provenance --access public
2222
env:

0 commit comments

Comments
 (0)