Skip to content

Commit

Permalink
chore(ci): add stubbed workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Apr 9, 2024
1 parent 3d9871a commit c5731bf
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 'Deploy Preview'
description: 'Deploys the HTML test files to a public bucket for preview'

on:
pull_request:
branches: [ '**' ]
workflow_dispatch:
push:
branches:
- 'next'

# When pushing a new commit we should
# cancel the previous test run to not
# consume more runners than we need to.
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
build-core:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/build-core

0 comments on commit c5731bf

Please sign in to comment.