Skip to content

Commit

Permalink
Create build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
brobeson committed Aug 31, 2023
1 parent 2cd1866 commit f3a5abf
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2023 brobeson

name: Build & Test
on:
workflow_dispatch:
pull_request:
push:

# From https://stackoverflow.com/a/72408109
# Create a group from the PR number, or the branch/tag name (if not a PR).
# Cancel in-progress runs if the PR, branch, or tag is updated.
concurrency:
group:
${{github.workflow}}-${{github.event.pull_request.number || github.ref}}
cancel-in-progress: true

jobs:
staticAnalysis:
name: Code Quality
uses: brobeson/brobeson/.github/workflows/support_files.yaml@reusable_workflows
build:
name: Build & Test
uses: brobeson/brobeson/.github/workflows/typescript.yaml@reusable_workflows

0 comments on commit f3a5abf

Please sign in to comment.