diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 17e0d87a85..e7d5669713 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,5 +1,5 @@ name: CI -on: push +on: [push, pull_request] jobs: build: runs-on: ubuntu-latest diff --git a/api-samples/identity/main.js b/api-samples/identity/main.js index 9ad9eff781..7c7a7bebab 100755 --- a/api-samples/identity/main.js +++ b/api-samples/identity/main.js @@ -1,6 +1,6 @@ chrome.action.onClicked.addListener(() => { chrome.tabs.create({ active: true, - url: "index.html" - }) -}) \ No newline at end of file + url: 'index.html' + }); +});