Skip to content

Commit a068f1c

Browse files
authored
GHA: don't run CI tests for 'push' events on tags (#4664)
1 parent dcad90a commit a068f1c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.browserslistrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
node >= 10
1+
node >= 12
22
last 2 Chrome versions
33
last 2 Edge versions
44
last 2 Firefox versions

.github/workflows/delete-runs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
days:
66
description: 'Number of days'
77
required: true
8-
default: 120
8+
default: 180
99

1010
jobs:
1111
del_runs:

.github/workflows/mocha.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Tests
2-
'on':
2+
on:
33
push:
4+
branches:
5+
- '**'
6+
tags-ignore:
7+
- '**'
48
pull_request:
59
types:
610
- opened

0 commit comments

Comments
 (0)