mirror of
https://github.com/HorlogeSkynet/thunderbird-user.js.git
synced 2025-06-12 00:53:03 -04:00
Replaces Acorn over Travis CI by ESLint over (Microsoft) GitHub Actions
> See #11, Acorn was great but not sufficient for Mozilla's libPref syntax...
This commit is contained in:
parent
ba65d33451
commit
b36710a76e
3 changed files with 62 additions and 8 deletions
17
.github/workflows/linting.yml
vendored
Normal file
17
.github/workflows/linting.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
name: Linting
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Run ESLint on user.js
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- uses: actions/setup-node@v1
|
||||
|
||||
- run: npm install -g eslint
|
||||
- run: eslint user.js
|
Loading…
Add table
Add a link
Reference in a new issue