diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 24d79ce..9bcead9 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -5,6 +5,9 @@ jobs: build: runs-on: ubuntu-latest name: Build the project + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 9516cff..603f966 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -8,6 +8,9 @@ jobs: build: runs-on: macos-latest name: Build iOS app + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true steps: - name: Checkout source uses: actions/checkout@v4 diff --git a/package.json b/package.json index 4a58fca..0844949 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "preview": "vite preview", "test.e2e": "playwright test", "test.unit": "vitest", - "lint": "biome check --apply --verbose src/**/* src/", + "lint": "biome check --write --verbose src/**/* src/", "build-ios": "ionic capacitor build ios --release --prod --no-open", "build-android": "ionic capacitor build android --release --prod --no-open", "ios": "npm run build && npm run sync && npx cap run ios",