Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed May 22, 2021
1 parent 2252e3e commit ddea021
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/setup-redis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ import * as starter from './starter';

async function run() {
try {
const required = { required: true};
const required = {required: true};
const version = core.getInput('redis-version', required);
const port = parseInt(
core.getInput('redis-port', required)
);
const port = parseInt(core.getInput('redis-port', required));
const autoStart = core.getBooleanInput('auto-start', required);

const redisPath = await core.group('install redis', async () => {
Expand Down

0 comments on commit ddea021

Please sign in to comment.