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 94972fb commit a504267Copy full SHA for a504267
.github/workflows/ci.yml
@@ -11,10 +11,15 @@ on:
11
schedule:
12
- cron: '0 6 * * 0' # weekly, on sundays
13
14
+concurrency:
15
+ group: ${{ github.head_ref || github.run_id }}
16
+ cancel-in-progress: true
17
+
18
jobs:
19
test:
20
name: "Node ${{ matrix.node }} / TS: ${{ matrix.typescript }} - ${{ matrix.os }}"
21
runs-on: "${{ matrix.os }}-latest"
22
+ timeout-minutes: 15
23
24
strategy:
25
fail-fast: false
@@ -48,7 +53,9 @@ jobs:
48
53
${{ runner.os }}-${{ matrix.node }}-
49
54
- name: install dependencies
50
55
run: yarn --frozen-lockfile
51
- - run: git submodule update --init
56
+ - run: |
57
+ git submodule init
58
+ git submodule update --depth 1
52
59
- name: Switch to alternate TS
60
if: matrix.typescript != 'default'
61
run: |
0 commit comments