From cfedea10e3c238a3e7ddaa38e97dbaaa78f09853 Mon Sep 17 00:00:00 2001 From: Oliver Lazoroski Date: Wed, 27 May 2026 11:13:06 +0200 Subject: [PATCH] chore(ci): run lint and test jobs on master Remove the `github.ref_name \!= 'master'` guards from the lint and test jobs so they also run on pushes to master, not only on pull requests. --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de5120d01..5243799af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,6 @@ env: jobs: lint: runs-on: ubuntu-latest - if: ${{ github.ref_name != 'master' }} name: ESLint & Prettier steps: - uses: actions/checkout@v6 @@ -47,7 +46,6 @@ jobs: key: '${{ env.BUILD_CACHE_KEY }}' test: - if: ${{ github.ref_name != 'master' }} runs-on: ubuntu-latest name: Test steps: