Skip to content

Commit

Permalink
chore: fix syntax error in GitHub workflows (#1822)
Browse files Browse the repository at this point in the history
* chore: fix syntax error in GitHub workflows
  • Loading branch information
mindctrl committed Feb 28, 2024
1 parent feed823 commit 33561b6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-next-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
PR_BRANCH: ${{github.event.pull_request.head.ref}}
strategy:
matrix:
node: ['18, '20]
node: ['18', '20']
defaults:
run:
working-directory: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-next-faustwp-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
PR_BRANCH: ${{github.event.pull_request.head.ref}}
strategy:
matrix:
node: ['18, '20]
node: ['18', '20']
defaults:
run:
working-directory: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
node: ['18, '20]
node: ['18', '20']
defaults:
run:
working-directory: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-22.04']
node: ['18, '20]
node: ['18', '20']
permissions:
checks: write
pull-requests: write
Expand Down

0 comments on commit 33561b6

Please sign in to comment.