mirror of
https://github.com/frappe/books.git
synced 2024-11-08 23:00:56 +00:00
8a1392e533
- add code mirror dependencies to silence warning - bump node version to allow execa
32 lines
599 B
YAML
32 lines
599 B
YAML
name: Build
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
setup_and_build:
|
|
runs-on: macos-11
|
|
steps:
|
|
- name: Setup node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '16.14.0'
|
|
|
|
- name: Set yarn version
|
|
run: yarn set version 1.22.18
|
|
|
|
- name: Checkout Books
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install Dependencies
|
|
run: yarn
|
|
|
|
- name: Run build
|
|
env:
|
|
CSC_IDENTITY_AUTO_DISCOVERY: false
|
|
APPLE_NOTARIZE: 0
|
|
run: yarn build -mw --publish never
|