Skip to content

Commit

Permalink
prod dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
boguszpawlowski committed Dec 21, 2022
1 parent 10343fc commit a8b029e
Show file tree
Hide file tree
Showing 9 changed files with 7,939 additions and 264 deletions.
22 changes: 1 addition & 21 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
@@ -1,29 +1,9 @@
import {wait} from '../src/wait'
import * as process from 'process'
import * as cp from 'child_process'
import * as path from 'path'
import {expect, test} from '@jest/globals'

test('throws invalid number', async () => {
const input = parseInt('foo', 10)
await expect(wait(input)).rejects.toThrow('milliseconds not a number')
})

test('wait 500 ms', async () => {
const start = new Date()
await wait(500)
const end = new Date()
var delta = Math.abs(end.getTime() - start.getTime())
expect(delta).toBeGreaterThan(450)
})

// shows how the runner will run a javascript action with env / stdout protocol
test('test runs', () => {
process.env['INPUT_MILLISECONDS'] = '500'
const np = process.execPath
const ip = path.join(__dirname, '..', 'lib', 'main.js')
const options: cp.ExecFileSyncOptions = {
env: process.env
}
console.log(cp.execFileSync(np, [ip], options).toString())

})
11 changes: 3 additions & 8 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: 'Your name here'
description: 'Provide a description here'
author: 'Your name or organization here'
inputs:
milliseconds: # change this
required: true
description: 'input description here'
default: 'default value if applicable'
name: 'PR Task Checker'
description: 'Action for checking if all tasks on a pr have been completed'
author: 'Bogusz Pawłowski'
runs:
using: 'node16'
main: 'dist/index.js'
Loading

0 comments on commit a8b029e

Please sign in to comment.