gauntlet-cswimr-plugins/.forgejo/workflows/actions.yaml
cswimr 8779cffba2
All checks were successful
Actions / Build Plugins (push) Successful in 28s
explicitly use yarn run in workflows
2024-12-23 01:36:28 -05:00

28 lines
585 B
YAML

name: Actions
on:
push:
branches:
- '*'
- '!gauntlet/release'
pull_request:
branches:
- main
jobs:
build:
name: Build Plugins
runs-on: docker
container: www.coastalcommits.com/cswimr/actions:yarn
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 run build