Skip to content

Commit

Permalink
Fix dependencies and update types
Browse files Browse the repository at this point in the history
  • Loading branch information
jhanke00 committed Oct 12, 2022
1 parent be703ea commit e1c51be
Show file tree
Hide file tree
Showing 10 changed files with 12,595 additions and 12,677 deletions.
8 changes: 6 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"plugins": ["@typescript-eslint"],
"extends": ["plugin:github/typescript", "plugin:prettier/recommended"],
"extends": [
"plugin:github/typescript",
"plugin:prettier/recommended",
"plugin:escompat/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 9,
"ecmaVersion": 2020,
"sourceType": "module",
"project": "./tsconfig.eslint.json"
},
Expand Down
4 changes: 2 additions & 2 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import anyTest, { TestInterface } from 'ava';
import anyTest, { TestFn } from 'ava';
import * as github from '@actions/github';
import { Octokit } from '@octokit/core';
import { DeploymentRef, main } from '../src/execute';

const test = anyTest as TestInterface<{
const test = anyTest as TestFn<{
token: string;
ref: string;
octokit: Octokit;
Expand Down
Loading

0 comments on commit e1c51be

Please sign in to comment.