Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies, including base repolinter image #9

Merged
merged 1 commit into from
Sep 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '15'
node-version: '14'

- name: Cache NPM
uses: actions/cache@v2
Expand All @@ -32,9 +32,6 @@ jobs:
- name: Lint
run: npm run lint

- name: Typescript Build
run: npm run build

- name: NCC Package
run: npm run package

Expand Down Expand Up @@ -134,7 +131,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '15'
node-version: '14'

- name: Cache NPM
uses: actions/cache@v2
Expand All @@ -147,9 +144,6 @@ jobs:
- name: Install Dependencies
run: npm ci

- name: Build
run: npm run build

- name: Package
run: npm run package

Expand Down
2 changes: 1 addition & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "avoid",
"jsdocParser": true
"plugins": ["prettier-plugin-jsdoc"]
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/todogroup/repolinter:v0.11.1
FROM ghcr.io/todogroup/repolinter:v0.11.2

# copy repolinter-action
WORKDIR /repolinter-action
Expand Down
1 change: 1 addition & 0 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import run from '../src/main'
import * as path from 'path'
import nock from 'nock'
import * as fs from 'fs'
import {TextDecoder} from 'util'
import {lint, jsonFormatter} from 'repolinter'

function getInputName(input: string): string {
Expand Down
Loading