Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ECO-265): Make Commonly Used Actions and Workflows Reusable #57

Merged
merged 8 commits into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/actions/publish/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Set Version And Publish

inputs:
version:
required: true
token:
required: true

runs:
using: "composite"
steps:
- name: Set Version
run: npm version "${{ inputs.version }}" --no-git-tag-version --no-commit-hooks

- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ inputs.token }}
32 changes: 32 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Setup Runtime and Dependencies

inputs:
token:
required: true

runs:
using: "composite"
steps:
- name: Setup node 18
uses: actions/setup-node@v3
with:
node-version: '18'
registry-url: https://npm.pkg.github.com/
scope: '@openphone'

- name: Checkout
uses: actions/checkout@v3

- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: ./node_modules
key: modules-${{ hashFiles('package-lock.json') }}

- name: Run CI
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
shell: bash
env:
NODE_AUTH_TOKEN: ${{inputs.token}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build Application

on:
workflow_call:
secrets:
token:
description: 'The GitHub/npm token'
required: true

jobs:
getver:
uses: OpenPhone/gha/.github/workflows/getver.yml@v4

build-types:
name: Build and Publish Types
runs-on: ubuntu-22.04
needs: getver
if: github.event_name == 'push'
defaults:
run:
working-directory: ./types
steps:
- name: Build
uses: OpenPhone/gha/.github/workflows/build-typescript-project-types.yml@v4

- name: Publish
uses: OpenPhone/gha/.github/actions/publish@v4
with:
token: ${{ inputs.token }}
version: ${{ needs.getver.outputs.version }}
27 changes: 27 additions & 0 deletions .github/workflows/build-and-publish-typescript-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build Application

on:
workflow_call:
secrets:
token:
description: 'The GitHub/npm token'
required: true

jobs:
getver:
uses: OpenPhone/gha/.github/workflows/getver.yml@v4

build:
name: Build and Publish Types
runs-on: ubuntu-22.04
needs: getver
if: github.event_name == 'push'
steps:
- name: Build
uses: OpenPhone/gha/.github/workflows/build-typescript-project.yml@v4

- name: Publish
uses: OpenPhone/gha/.github/actions/publish@v4
with:
token: ${{ inputs.token }}
version: ${{ needs.getver.outputs.version }}
27 changes: 27 additions & 0 deletions .github/workflows/build-typescript-project-types.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build Types

on:
workflow_call:
secrets:
token:
description: 'The GitHub/npm token'
required: true

jobs:
build-types:
name: Build Types
runs-on: ubuntu-22.04
defaults:
run:
working-directory: ./types
steps:
- name: Setup
uses: OpenPhone/gha/.github/actions/setup@v4
with:
token: ${{ secrets.token }}

- name: Build
run: npm run build

- name: Test
run: npm node .
30 changes: 30 additions & 0 deletions .github/workflows/build-typescript-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build Application

on:
workflow_call:
secrets:
token:
description: 'The GitHub/npm token'
required: true

jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Setup
uses: OpenPhone/gha/.github/actions/setup@v4
with:
token: ${{ secrets.token }}

- name: Lint
run: npm run lint

- name: Typecheck
run: npm run typecheck

- name: Build
run: npm run build

- name: Run
run: node .
20 changes: 20 additions & 0 deletions .github/workflows/getsha.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Get GitHub SHA

on:
workflow_call:
outputs:
sha:
value: ${{ jobs.getsha.outputs.sha }}

jobs:
getsha:
name: Get SHA
runs-on: ubuntu-22.04

outputs:
sha: ${{ steps.getsha.outputs.sha }}

steps:
- id: getsha
shell: bash
run: echo "sha=${GITHUB_SHA::8}" >> $GITHUB_OUTPUT
21 changes: 21 additions & 0 deletions .github/workflows/getver.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Get Version from Tag

on:
workflow_call:
outputs:
version:
value: ${{ jobs.getver.outputs.version }}

jobs:
getver:
name: Get Version
runs-on: ubuntu-22.04

outputs:
version: ${{ steps.vertag.outputs.version }}

steps:
- id: vertag
shell: bash
if: startsWith(github.ref, 'refs/tags/v')
run: echo "version=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_OUTPUT