Skip to content

Commit 6ae8c72

Browse files
committed
ci: removed unnecessary quotes from the workflow definition
1 parent d54d2f2 commit 6ae8c72

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/node-ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Node.js CI
55
- master
66
- alpha
77
- beta
8-
- 'renovate/**'
8+
- renovate/**
99
pull_request:
1010
types:
1111
- opened
@@ -19,12 +19,12 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v2
2121
- name: Read .nvmrc
22-
run: 'echo ::set-output name=NVMRC::$(cat .nvmrc)'
22+
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
2323
id: nvm
2424
- name: Setup node
2525
uses: actions/setup-node@v2
2626
with:
27-
node-version: '${{ steps.nvm.outputs.NVMRC }}'
27+
node-version: ${{ steps.nvm.outputs.NVMRC }}
2828
- uses: bahmutov/npm-install@v1
2929
- run: npm test
3030
release:
@@ -33,15 +33,15 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v2
3535
- name: Read .nvmrc
36-
run: 'echo ::set-output name=NVMRC::$(cat .nvmrc)'
36+
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
3737
id: nvm
3838
- name: Setup node
3939
uses: actions/setup-node@v2
4040
with:
41-
node-version: '${{ steps.nvm.outputs.NVMRC }}'
41+
node-version: ${{ steps.nvm.outputs.NVMRC }}
4242
- uses: bahmutov/npm-install@v1
4343
- name: semantic-release
4444
run: npx semantic-release
4545
env:
46-
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
47-
NPM_TOKEN: '${{ secrets.NPM_PUBLISH_TOKEN }}'
46+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47+
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}

0 commit comments

Comments
 (0)