2024-12-22 12:11:24 -05:00
|
|
|
name: Actions
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
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-22 12:16:18 -05:00
|
|
|
container: www.coastalcommits.com/cswimr/actions:yarn
|
2024-12-22 12:11:24 -05:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: 18
|
|
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Build plugins
|
|
|
|
run: yarn build
|