web/.gitea/workflows/build.yaml
Tara Wilson 4f8c87b6bb
All checks were successful
Build / Build (push) Successful in 19s
Adding gitea actions
2025-03-18 19:30:10 -04:00

18 lines
378 B
YAML

name: Build
run-name: ${{gitea.actor}} is building 🚀
on: [push]
jobs:
Build:
runs-on: osx
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Restoring Node Packages
run: |
cd source
yarn install --frozen-lockfile
- name: Build
run: |
cd source
yarn run build