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

github actions reorganised #200

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
24 changes: 24 additions & 0 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 'Setup Action'
description: 'Checkouts the repo, sets up node, and installs dependencies'
runs:
using: 'composite'
steps:
- name: Checkout Repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: Set up Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v2
with:
node-version: '18'

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

- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: 'npm ci'
shell: bash
35 changes: 35 additions & 0 deletions .github/workflows/_security-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Security Checks
on:
workflow_call:
permissions:
contents: read
jobs:
trivy:
name: Trivy
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Scan repo
uses: aquasecurity/trivy-action@18f2510ee396bbf400402947b394f2dd8c87dbb0 # 0.29.0
with:
scan-type: 'fs'
scan-ref: '.'
scanners: 'vuln,secret,config'
exit-code: '1'
ignore-unfixed: 'true'
severity: 'MEDIUM,HIGH,CRITICAL'

npm-audit:
name: NPM Audit
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Setup
uses: ./.github/actions/setup

- name: Run npm audit
run: npm audit --omit=dev --audit-level=moderate
46 changes: 46 additions & 0 deletions .github/workflows/_static-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Static Checks
on:
workflow_call:
permissions:
contents: read
jobs:
lint:
name: ESLint Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Setup
uses: ./.github/actions/setup

- name: Run linter
run: npm run lint

tsc:
name: TS Types Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Setup
uses: ./.github/actions/setup

- name: Run Tsc
run: npm run type-check

build:
name: Build App Check
runs-on: ubuntu-latest
env:
NODE_OPTIONS: "--max_old_space_size=4096"
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Setup
uses: ./.github/actions/setup

- name: Build App
run: npm run build
19 changes: 19 additions & 0 deletions .github/workflows/_unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Unit Tests
permissions:
contents: write
on:
workflow_call:
jobs:
tests:
name: Jest
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Setup
uses: ./.github/actions/setup

- name: Run tests
run: npm run test

52 changes: 0 additions & 52 deletions .github/workflows/main.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/on-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: On PR
permissions: write-all
on:
pull_request:
jobs:
security:
name: Security Checks
uses: ./.github/workflows/_security-checks.yml

static-checks:
name: Static Checks
uses: ./.github/workflows/_static-checks.yml
secrets: inherit

unit-tests:
name: Unit Tests
uses: ./.github/workflows/_unit-tests.yml
secrets: inherit
23 changes: 23 additions & 0 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: On Release
permissions: write-all
on:
release:
types: [published]
jobs:
release:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Setup
uses: ./.github/actions/setup

- name: Publish
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}



3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@
"build:esm": "tsc -p tsconfig.prod.json && echo '{\"type\": \"module\"}' > dist/esm/package.json",
"build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"prepack": "npm run build:esm && npm run build:cjs",
"type-check": "npm run type-check:esm && npm run type-check:cjs",
"type-check:esm": "tsc --noEmit -p ./tsconfig.prod.json",
"type-check:cjs": "tsc --noEmit -p ./tsconfig.cjs.json",
"lint": "eslint src/",
"test": "jest",
"start": "npm run server",
Expand Down