We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afa8e70 commit 5231744Copy full SHA for 5231744
.github/workflows/test.yml
@@ -13,13 +13,13 @@
13
# limitations under the License.
14
15
name: Test
16
-on: [pull_request]
+on: [pull_request, push]
17
+concurrency:
18
+ group: ${{ github.workflow }}-${{ github.ref }}
19
+ cancel-in-progress: true
20
jobs:
21
test:
- strategy:
- matrix:
- os: [macos-latest, ubuntu-latest, windows-latest]
22
- runs-on: ${{ matrix.os }}
+ runs-on: ubuntu-latest
23
steps:
24
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
@@ -31,7 +31,4 @@ jobs:
31
- run: pnpm lint
32
- run: pnpm check
33
- run: xvfb-run -a pnpm test
34
- if: runner.os == 'Linux'
35
- - run: pnpm test
36
- if: runner.os != 'Linux'
37
- run: pnpm ci:package
0 commit comments