Skip to main content

Sample Package to test things

Project description

typescript-action status

Create a JavaScript Action using TypeScript

Use this template to bootstrap the creation of a TypeScript action.:rocket:

This template includes compilation support, tests, a validation workflow, publishing, and versioning guidance.

If you are new, there's also a simpler introduction. See the Hello World JavaScript Action

Create an action from this template

Click the Use this Template and provide the new repo details for your action

Code in Main

First, you'll need to have a reasonably modern version of node handy. This won't work with versions older than 9, for instance.

Install the dependencies

$ npm install

Build the typescript and package it for distribution

$ npm run build && npm run package

Run the tests :heavy_check_mark:

$ npm test

 PASS  ./index.test.js
   throws invalid number (3ms)
   wait 500 ms (504ms)
   test runs (95ms)

...

Change action.yml

The action.yml contains defines the inputs and output for your action.

Update the action.yml with your name, description, inputs and outputs for your action.

See the documentation

Change the Code

Most toolkit and CI/CD operations involve async operations so the action is run in an async function.

import * as core from '@actions/core';
...

async function run() {
  try { 
      ...
  } 
  catch (error) {
    core.setFailed(error.message);
  }
}

run()

See the toolkit documentation for the various packages.

Publish to a distribution branch

Actions are run from GitHub repos so we will checkin the packed dist folder.

Then run ncc and push the results:

$ npm run package
$ git add dist
$ git commit -a -m "prod dependencies"
$ git push origin releases/v1

Note: We recommend using the --license option for ncc, which will create a license file for all of the production node modules used in your project.

Your action is now published! :rocket:

See the versioning documentation

Validate

You can now validate the action by referencing ./ in a workflow in your repo (see test.yml)

uses: ./
with:
  milliseconds: 1000

See the actions tab for runs of this action! :rocket:

Usage:

After testing you can create a v1 tag to reference the stable and latest V1 action

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

custom-actions-0.0.1.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

custom_actions-0.0.1-py3-none-any.whl (4.6 kB view details)

Uploaded Python 3

File details

Details for the file custom-actions-0.0.1.tar.gz.

File metadata

  • Download URL: custom-actions-0.0.1.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for custom-actions-0.0.1.tar.gz
Algorithm Hash digest
SHA256 f0a9be7548d5af3feec2ee2c2b964c00d1a1ece2b689a8572c5df4688bcab34b
MD5 09806a60588eab26696c1609aac213eb
BLAKE2b-256 f7031e1f8c8790aa072d3af67a501c268ebcee60662452320c6c777400ab7a79

See more details on using hashes here.

File details

Details for the file custom_actions-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: custom_actions-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 4.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for custom_actions-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fe9d0d450b281528f1a49f96512af985146782487c2917a52bf6f31d44999360
MD5 70eaedd8b0f323626e00d93a80096b71
BLAKE2b-256 63c41e76aaf2ac3dbbe879d12bf052fc1d5e196088d0c3bd668acc27f83f726e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page