Skip to content

Commit

Permalink
chore: fix github action format
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanPiercey committed Feb 26, 2024
1 parent b94f03b commit 1bf9135
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ concurrency:
jobs:
format:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -30,7 +34,6 @@ jobs:
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: ${{ github.head_ref }}
commit_message: "[ci] format"
commit_user_name: "github-actions[bot]"
commit_user_email: "github-actions[bot]@users.noreply.github.com"
Expand All @@ -42,7 +45,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [16, 18]
node: [18, 20]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down

0 comments on commit 1bf9135

Please sign in to comment.