mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-06 07:19:51 +00:00
Node 12 has an end of life on April 30, 2022. This PR updates the default runtime to [node16](https://github.blog/changelog/2021-12-10-github-actions-github-hosted-runners-now-run-node-js-16-by-default/), rather then node12. This is supported on all Actions Runners v2.285.0 or later.
12 lines
296 B
YAML
12 lines
296 B
YAML
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'
|
|
runs:
|
|
using: 'node16'
|
|
main: 'dist/index.js'
|