Skip to content

Commit

Permalink
[conf] do not wrap string in yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mrhyde committed Dec 27, 2023
1 parent a1b895e commit e0173ff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: 'CodeQL'
name: CodeQL

on:
schedule:
- cron: '0 4 * * 1'
- cron: 0 4 * * 1

jobs:
analyze:
Expand All @@ -17,7 +17,8 @@ jobs:
strategy:
fail-fast: false
matrix:
language: ['javascript-typescript']
language:
- javascript-typescript

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4
with:
node-version-file: 'package.json'
registry-url: 'https://registry.npmjs.org'
node-version-file: package.json
registry-url: https://registry.npmjs.org

- run: npm ci
- run: npm publish --provenance --access public
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'docs/**'
- '*.md'
schedule:
- cron: '0 20 * * *'
- cron: 0 20 * * *

jobs:
test:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4
with:
node-version-file: 'package.json'
node-version-file: package.json

- run: npm ci

Expand Down

0 comments on commit e0173ff

Please sign in to comment.