Browse Source

chore: Run actions on pull requests as well (#2917)

* chore: Run actions on pull requests as well

* Update cancel.yml

* Update lint.yml

* Update test.yml

* Update cancel.yml
pull/2924/head
Lipis 5 years ago committed by GitHub
parent
commit
0f4a053759
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/cancel.yml
  2. 2
      .github/workflows/lint.yml
  3. 2
      .github/workflows/test.yml

6
.github/workflows/cancel.yml

@ -1,6 +1,10 @@ @@ -1,6 +1,10 @@
name: Cancel previous runs
on: push
on:
push:
branches:
- master
pull_request:
jobs:
cancel:

2
.github/workflows/lint.yml

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
name: Lint
on: push
on: pull_request
jobs:
lint:

2
.github/workflows/test.yml

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
name: Tests
on: push
on: pull_request
jobs:
test:

Loading…
Cancel
Save