fix: 修复 table-render 配置默认 current 不生效 #1817
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🚀 Build CI | |
env: | |
NODE_OPTIONS: --max-old-space-size=6144 | |
on: | |
push: | |
branches: [master, dev] | |
pull_request: | |
branches: [master, dev] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ '14', '16' ] | |
name: build steps | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Cache Node Dependencies | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: ${{runner.OS}}-${{ hashFiles('**/yarn.lock') }} | |
- name: Install | |
run: yarn install | |
if: steps.cache.outputs.cache-hit != 'true' | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test |