mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-04-27 14:57:44 +00:00
Fix lint errors
This commit is contained in:
parent
0498bc5684
commit
b12e3b5b13
3 changed files with 12 additions and 5 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
|
@ -2,7 +2,10 @@ name: CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ '**' ]
|
branches: ["**"]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Set the job key. The key is displayed as the job name
|
# Set the job key. The key is displayed as the job name
|
||||||
|
|
@ -10,7 +13,7 @@ jobs:
|
||||||
tests:
|
tests:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
ruby: [ '3.4', '3.3', '3.2' ]
|
ruby: ["3.4", "3.3", "3.2"]
|
||||||
|
|
||||||
name: Tests - Ruby ${{ matrix.ruby }}
|
name: Tests - Ruby ${{ matrix.ruby }}
|
||||||
# Set the type of machine to run on
|
# Set the type of machine to run on
|
||||||
|
|
|
||||||
5
.github/workflows/linter.yml
vendored
5
.github/workflows/linter.yml
vendored
|
|
@ -16,7 +16,10 @@ name: Lint Code Base
|
||||||
#############################
|
#############################
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ '**' ]
|
branches: ["**"]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
###############
|
###############
|
||||||
# Set the Job #
|
# Set the Job #
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
"threshold": 1,
|
"threshold": 1,
|
||||||
"ignore": ["spec/**"]
|
"ignore": ["spec/**"],
|
||||||
|
"reporters": ["threshold"]
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue