Giter Site home page Giter Site logo

github-actions's Introduction

This contains github actions code to be used in github actions as well as notes on github actions. The actions have their own repositories solely due to the requirement for one action per repository for the marketplace. For typescript actions there is a repo template, note that this is for single action repositories. This template can be amended if you want a multi action repository. A multi action repository has a folder for each action containing a single action.yaml file with runs: main: the built script file.

Below is a script file that facilitates building with ncc in a repository with a naming convention. Every action folder should have a corresponding typescript file in src.

/* eslint-disable no-console */
import * as path from 'path'
import * as fs from 'fs'
import {exec} from 'child_process'

function getRootDirectory(): string {
  const scriptsDirectory = __dirname
  return getParentDirectory(scriptsDirectory)
}

function getSourceDirectory(): string {
  return path.join(getRootDirectory(), 'src')
}

function getSourceFiles(): string[] {
  const sourceDirectory = getSourceDirectory()
  return readDirSyncOfType(sourceDirectory, true)
}

function readDirSyncFullPath(directory: string): string[] {
  return fs.readdirSync(directory).map(fe => path.join(directory, fe))
}

function readDirSyncOfType(directory: string, files: boolean): string[] {
  const fileEntries = readDirSyncFullPath(directory)
  return fileEntries.filter(fe => {
    const isDirectory = fs.statSync(fe).isDirectory()
    return files ? !isDirectory : isDirectory
  })
}

function dirName(dir: string): string {
  return dir.split(path.sep).pop() as string
}

function getParentDirectory(dir: string): string {
  const parts = dir.split(path.sep)
  parts.pop()
  return parts.join(path.sep)
}

function nccBuildMultipleActionsByNamingConvention(): void {
  const sourceFiles = getSourceFiles()
  const possibleActionDirectories = readDirSyncOfType(
    getRootDirectory(),
    false
  ).map(d => dirName(d))
  for (const sourceFile of sourceFiles) {
    const matchingActionDirectoryName = path.basename(sourceFile, '.ts')
    if (
      possibleActionDirectories.some(d => d === matchingActionDirectoryName)
    ) {
      nccBuild(sourceFile)
    }
  }
}

function nccBuild(tsFile: string): void {
  console.log(`ncc building ${tsFile}`)
  const distFolder = path.basename(tsFile, '.ts')
  exec(
    `npm run nccSingle -- build ${tsFile} --source-map --license licenses.txt --out dist/${distFolder}`,
    {cwd: getSourceDirectory()},
    (err, stdout, stderr) => {
      if (err) {
        console.log(stderr)
      } else {
        console.log(stdout)
      }
    }
  )
}

nccBuildMultipleActionsByNamingConvention()

Amend the scripts key in package.json

"scripts": {
    "build": "tsc",
    "format": "prettier --write **/*.ts",
    "format-check": "prettier --check **/*.ts",
    "lint": "eslint src/**/*.ts",
    "test": "jest",
    "all": "npm run format && npm run lint && npm run package && npm test && npm run nccBuild",
    "nccBuild": "ts-node scripts/nccBuild.ts",
    "nccSingle": "ncc"
  },

github-actions's People

Contributors

tonyhallett avatar ptabor avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.