Runs lint on all PRs to main (including external contributors) (#1502)

* Update lint.yml

* Build and e2e on PRs
This commit is contained in:
Omar López 2022-01-13 11:09:37 -07:00 committed by GitHub
parent 54be2a2ec1
commit 67bcbfd75a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 3 deletions

View file

@ -1,5 +1,12 @@
name: Build name: Build
on: [push] on:
push:
branches:
- main
- staging
pull_request:
branches:
- main
jobs: jobs:
build: build:
timeout-minutes: 5 timeout-minutes: 5

View file

@ -1,5 +1,12 @@
name: E2E test name: E2E test
on: [push] on:
push:
branches:
- main
- staging
pull_request:
branches:
- main
jobs: jobs:
test: test:
timeout-minutes: 10 timeout-minutes: 10

View file

@ -1,5 +1,8 @@
name: Lint name: Lint
on: [push] on:
pull_request:
branches:
- main
jobs: jobs:
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest