mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-07-03 16:07:29 +00:00
78 lines
1.9 KiB
YAML
78 lines
1.9 KiB
YAML
name: PR
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Linting
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [12.x]
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: lint
|
|
run: |
|
|
yarn install --frozen-lockfile
|
|
yarn lint
|
|
|
|
test:
|
|
name: Testing
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [12.x]
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: test
|
|
env:
|
|
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
run: |
|
|
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
chmod +x ./cc-test-reporter
|
|
yarn install --frozen-lockfile
|
|
./cc-test-reporter before-build
|
|
yarn test
|
|
./cc-test-reporter after-build --exit-code 0
|
|
|
|
build_code:
|
|
name: Build Code
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [12.x]
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: build
|
|
run: |
|
|
yarn install --frozen-lockfile
|
|
yarn build:split:code
|
|
|
|
build_docs:
|
|
name: Build Docs
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [12.x]
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: build
|
|
run: |
|
|
yarn install --frozen-lockfile
|
|
yarn build:split:docs
|