Fix linter error and run on PRs (#1447)

Fixes a linter error in the `identity` API sample, and updates the
linter to run on all PRs going forward.
This commit is contained in:
Oliver Dunk
2025-03-31 14:17:58 +01:00
committed by GitHub
parent 40456c76c1
commit 8cf0e9a827
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
name: CI
on: push
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest

View File

@@ -1,6 +1,6 @@
chrome.action.onClicked.addListener(() => {
chrome.tabs.create({
active: true,
url: "index.html"
})
})
url: 'index.html'
});
});