Skip to content

chore(release): publish 2.3.24 #158

chore(release): publish 2.3.24

chore(release): publish 2.3.24 #158

Workflow file for this run

name: Check
on:
pull_request:
branches:
- main
types: [opened, edited, reopened]
env:
CI: true
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
# - run: npm install -g yarn
- name: install
run: yarn
- name: bootstrap
run: yarn run bootstrap:lerna
- name: build
run: yarn run build
- name: lint
run: |
yarn run eslint
yarn run stylelint
- name: build
run: yarn run build
- name: test
run: yarn run test
#以后添加发送钉钉/微信消息,进来指定reviewer