fix: 提供customMappingField能力,只对color生效 (#3850) #3912
This file contains hidden or 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 | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: macOS-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Setup Node.js environment | |
| uses: actions/[email protected] | |
| with: | |
| node-version: '18' | |
| - name: Run CI | |
| run: | | |
| npm install --legacy-peer-deps | |
| npm run lint | |
| npm run build | |
| npm run coverage | |
| - name: Update coverall | |
| if: ${{ success() }} | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |