Skip to content

Commit a9a431b

Browse files
committed
Remove "labeled" trigger from check workflow
It doesn't really work as intended.
1 parent e481a96 commit a9a431b

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/check.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches:
1010
- main
1111
pull_request:
12-
types: [labeled, opened, synchronize, reopened]
12+
types: [opened, synchronize, reopened]
1313

1414
concurrency:
1515
group: ${{ github.workflow }}-${{ github.ref }}
@@ -37,23 +37,23 @@ jobs:
3737
runs-on: ${{ matrix.runner }}
3838
name: Unit tests (${{ matrix.runner }})
3939
steps:
40-
- uses: actions/checkout@v4
41-
- uses: actions/setup-node@v4
42-
with:
43-
node-version: lts/jod
44-
- name: Set up JDK 17
45-
uses: actions/setup-java@v3
46-
with:
47-
java-version: "17"
48-
distribution: "temurin"
49-
- name: Setup Android SDK
50-
uses: android-actions/setup-android@v3
51-
with:
52-
packages: tools platform-tools ndk;${{ env.NDK_VERSION }}
53-
- run: rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi i686-linux-android aarch64-apple-ios-sim
54-
- run: npm ci
55-
- run: npm run bootstrap
56-
- run: npm test
40+
- uses: actions/checkout@v4
41+
- uses: actions/setup-node@v4
42+
with:
43+
node-version: lts/jod
44+
- name: Set up JDK 17
45+
uses: actions/setup-java@v3
46+
with:
47+
java-version: "17"
48+
distribution: "temurin"
49+
- name: Setup Android SDK
50+
uses: android-actions/setup-android@v3
51+
with:
52+
packages: tools platform-tools ndk;${{ env.NDK_VERSION }}
53+
- run: rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi i686-linux-android aarch64-apple-ios-sim
54+
- run: npm ci
55+
- run: npm run bootstrap
56+
- run: npm test
5757
test-ios:
5858
if: github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Apple 🍎')
5959
name: Test app (iOS)

0 commit comments

Comments
 (0)