Skip to content

docs/refine theme pack guide for local dev #1315

docs/refine theme pack guide for local dev

docs/refine theme pack guide for local dev #1315

Workflow file for this run

name: Continuous Integration Windows
on: [pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
node: [18]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Installing project dependencies
run: |
yarn install --frozen-lockfile --network-timeout 1000000 && yarn lerna bootstrap
- name: Lint
run: |
yarn lint
- name: Test
run: |
yarn test
- name: Build
run: |
yarn clean && yarn build