mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
Fixes a linter error in the `identity` API sample, and updates the linter to run on all PRs going forward.
12 lines
213 B
YAML
12 lines
213 B
YAML
name: CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install modules
|
|
run: npm ci
|
|
- name: Run ESLint
|
|
run: npm run lint
|