Skip to content

Commit 195c22a

Browse files
committed
test
1 parent 40fc6bc commit 195c22a

File tree

1 file changed

+31
-27
lines changed

1 file changed

+31
-27
lines changed

.github/workflows/on-pull-request.yml

Lines changed: 31 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
workflow_call:
55
workflow_dispatch:
66
pull_request:
7+
push:
8+
branches:
9+
- test-concurrency-group
710

811
env:
912
API_KEY: ${{ secrets.API_KEY }}
@@ -12,33 +15,33 @@ env:
1215
EXAMPLE_USER_ID: ${{ secrets.EXAMPLE_USER_ID }}
1316

1417
jobs:
15-
lint:
16-
name: Lint
17-
runs-on: ubuntu-latest
18-
steps:
19-
- uses: actions/checkout@v4
20-
- name: Install dependencies
21-
run: npm i
22-
- name: Lint
23-
run: npm run lint:ci
24-
format:
25-
name: Format
26-
runs-on: ubuntu-latest
27-
steps:
28-
- uses: actions/checkout@v4
29-
- name: Install dependencies
30-
run: npm i
31-
- name: Format
32-
run: npm run format:ci
33-
test:
34-
name: Test
35-
runs-on: ubuntu-latest
36-
steps:
37-
- uses: actions/checkout@v4
38-
- name: Install dependencies
39-
run: npm i
40-
- name: Test
41-
run: npm run test
18+
# lint:
19+
# name: Lint
20+
# runs-on: ubuntu-latest
21+
# steps:
22+
# - uses: actions/checkout@v4
23+
# - name: Install dependencies
24+
# run: npm i
25+
# - name: Lint
26+
# run: npm run lint:ci
27+
# format:
28+
# name: Format
29+
# runs-on: ubuntu-latest
30+
# steps:
31+
# - uses: actions/checkout@v4
32+
# - name: Install dependencies
33+
# run: npm i
34+
# - name: Format
35+
# run: npm run format:ci
36+
# test:
37+
# name: Test
38+
# runs-on: ubuntu-latest
39+
# steps:
40+
# - uses: actions/checkout@v4
41+
# - name: Install dependencies
42+
# run: npm i
43+
# - name: Test
44+
# run: npm run test
4245
test-e2e:
4346
name: Test E2E
4447
runs-on: ubuntu-latest
@@ -58,6 +61,7 @@ jobs:
5861
# github.head_ref is only available on PR events, while github.ref_name provides the branch name on other events
5962
client_payload: >-
6063
{
64+
"target_ref":"test-concurrency-group",
6165
"target_sdk":"node",
6266
"use_test_release":true,
6367
"sdk_branch_ref":"${{ github.head_ref || github.ref_name }}"

0 commit comments

Comments
 (0)