2022-10-31 08:14:27 +00:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [$default-branch]
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2022-10-31 08:21:52 +00:00
|
|
|
setup_and_test:
|
2022-10-31 08:14:27 +00:00
|
|
|
runs-on: macos-11
|
|
|
|
steps:
|
|
|
|
- name: Setup node
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
2023-06-21 08:05:42 +00:00
|
|
|
node-version: '16.14.0'
|
2022-10-31 08:14:27 +00:00
|
|
|
|
|
|
|
- name: Set yarn version
|
|
|
|
run: yarn set version 1.22.18
|
|
|
|
|
|
|
|
- name: Checkout Books
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: yarn
|
|
|
|
|
2023-06-27 06:12:47 +00:00
|
|
|
- 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: '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: Build Source Files
|
|
|
|
run: yarn build --nosign --nopackage
|
|
|
|
|
|
|
|
- name: Run UI Tests
|
|
|
|
run: yarn uitest
|