mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
56 lines
1.0 KiB
YAML
56 lines
1.0 KiB
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [$default-branch]
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
setup_and_test:
|
|
runs-on: macos-11
|
|
steps:
|
|
- name: Setup node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '18.19.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 Tests
|
|
run: yarn test
|
|
|
|
setup_and_uitest:
|
|
runs-on: macos-11
|
|
steps:
|
|
- name: Setup node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '18.19.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: Build Source Files
|
|
run: yarn build --nosign --nopackage
|
|
|
|
- name: Run UI Tests
|
|
run: yarn uitest
|