diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 96120f8..77b915d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,9 +1,9 @@ version: 2 updates: # Enable version updates for npm - - package-ecosystem: "npm" + - package-ecosystem: 'npm' # Look for `package.json` and `lock` files in the `root` directory - directory: "/" + directory: '/' # Check the npm registry for updates every day (weekdays) schedule: - interval: "daily" \ No newline at end of file + interval: 'daily' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6cce9aa..13ac42a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: "build-test" +name: 'build-test' on: # rebuild any PRs and main branch changes pull_request: push: @@ -10,15 +10,15 @@ jobs: build: # make sure build/ci work properly runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - run: | - npm install - - run: | - npm run all + - uses: actions/checkout@v2 + - run: | + npm install + - run: | + npm run all test: # make sure the action works on a clean machine without building runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: ./ - with: - milliseconds: 1000 \ No newline at end of file + - uses: actions/checkout@v2 + - uses: ./ + with: + milliseconds: 1000 diff --git a/.prettierrc.json b/.prettierrc.json index d1c1215..c34bafc 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -6,6 +6,5 @@ "singleQuote": true, "trailingComma": "none", "bracketSpacing": false, - "arrowParens": "avoid", - "parser": "typescript" + "arrowParens": "avoid" } diff --git a/action.yml b/action.yml index f54e6ac..bfbb165 100644 --- a/action.yml +++ b/action.yml @@ -2,7 +2,8 @@ name: 'Your name here' description: 'Provide a description here' author: 'Your name or organization here' inputs: - milliseconds: # change this + milliseconds: # change this + required: true description: 'input description here' default: 'default value if applicable' runs: