amis2/.github/workflows/pr-test.yml

51 lines
1.3 KiB
YAML
Raw Normal View History

2021-02-02 15:23:12 +08:00
name: PR test
on:
pull_request:
branches: ['**']
2021-02-02 15:23:12 +08:00
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2022-06-02 15:55:34 +08:00
node-version: [16.x]
2021-02-02 15:23:12 +08:00
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: npm install
env:
NODE_OPTIONS: '--max-old-space-size=8192'
2021-02-02 15:23:12 +08:00
run: |
npm i --legacy-peer-deps
cd packages/office-viewer
npm i --legacy-peer-deps
cd ../../
npm run build --workspace amis-formula
npm run build --workspace amis-core
npm run build --workspace amis-ui
npm run build --workspace amis
npm run build --workspace amis-editor-core
npm run build --workspace amis-editor
- name: typescript check
env:
NODE_OPTIONS: '--max-old-space-size=8192'
run: |
npm run typecheck
- name: test
run: |
2022-06-02 13:28:23 +08:00
npm test --workspaces
cd packages/office-viewer
2023-05-05 21:39:45 +08:00
npm test
cd ../../
sh deploy-gh-pages.sh