2024-12-22 12:11:24 -05:00
|
|
|
name: Actions
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-12-23 17:17:15 -05:00
|
|
|
- main
|
2024-12-23 01:32:23 -05:00
|
|
|
- '!gauntlet/release'
|
2024-12-22 12:11:24 -05:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build Plugins
|
|
|
|
runs-on: docker
|
2024-12-27 15:35:03 -05:00
|
|
|
container: www.coastalcommits.com/cswimr/actions:yarn@sha256:34b46b4169ee57aa9007a7244538e50522a451233a9aadd3f4e63c46d0297d82
|
2024-12-22 12:11:24 -05:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-12-27 15:35:03 -05:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
2024-12-22 12:11:24 -05:00
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Build plugins
|
2024-12-23 01:36:28 -05:00
|
|
|
run: yarn run build
|
2024-12-23 01:38:59 -05:00
|
|
|
- name: Upload build artifact
|
2024-12-27 15:35:03 -05:00
|
|
|
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
|
2024-12-23 01:38:59 -05:00
|
|
|
with:
|
|
|
|
name: plugins-build
|
2024-12-23 01:43:48 -05:00
|
|
|
path: dist/
|