diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 770465012d..8b4813e529 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,10 +2,13 @@ name: Lint on: push: + branches: + - "**" tags-ignore: - - 'v*' + - "v*" pull_request: - branches: [ main ] + branches: + - main permissions: contents: read diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index ed225b3773..14bd11376a 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -5,7 +5,7 @@ on: branches: - main tags-ignore: - - 'v*' + - "v*" pull_request: types: [opened, reopened, synchronize] @@ -15,8 +15,8 @@ permissions: jobs: update_release_draft: permissions: - contents: write # for release-drafter/release-drafter to create a github release - pull-requests: write # for release-drafter/release-drafter to add label to PR + contents: write # for release-drafter/release-drafter to create a github release + pull-requests: write # for release-drafter/release-drafter to add label to PR runs-on: ubuntu-latest steps: # Drafts your next Release notes as Pull Requests are merged into "main" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7006eea045..68d81bc00a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,10 +2,13 @@ name: Tests on: push: + branches: + - "**" tags-ignore: - - 'v*' + - "v*" pull_request: - branches: [ main ] + branches: + - main jobs: go-test: @@ -13,7 +16,7 @@ jobs: uses: harryzcy/github-actions/.github/workflows/go.yml@main with: working-directory: bff - + jest-test: name: Jest Tests runs-on: ubuntu-latest @@ -25,7 +28,7 @@ jobs: - uses: actions/setup-node@v3 with: - node-version: '18' + node-version: "18" - name: Install dependencies run: npm ci