Skip to content

Commit fd50294

Browse files
committed
Fix linter error and run on PRs
Fixes a linter error in the `identity` API sample, and updates the linter to run on all PRs going forward.
1 parent 40456c7 commit fd50294

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: CI
2-
on: push
2+
on: [push, pull_request]
33
jobs:
44
build:
55
runs-on: ubuntu-latest

api-samples/identity/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
chrome.action.onClicked.addListener(() => {
22
chrome.tabs.create({
33
active: true,
4-
url: "index.html"
5-
})
6-
})
4+
url: 'index.html'
5+
});
6+
});

0 commit comments

Comments
 (0)