element-web/.github/workflows/build.yml

27 lines
673 B
YAML
Raw Normal View History

name: Build
on:
2022-12-09 13:28:29 +01:00
pull_request: {}
push:
branches: [master]
# develop pushes and repository_dispatch handled in build_develop.yaml
env:
2022-12-09 13:28:29 +01:00
# These must be set for fetchdep.sh to get the right branch
REPOSITORY: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
jobs:
2022-12-09 13:28:29 +01:00
build:
name: "Build"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2022-12-09 13:28:29 +01:00
- uses: actions/setup-node@v3
with:
cache: "yarn"
2022-12-09 13:28:29 +01:00
- name: Install Dependencies
run: "./scripts/layered.sh"
2022-12-09 13:28:29 +01:00
- name: Build
run: "yarn build"