This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
fix: 🐛 fix compiled results with staticRenderFns
in some case (#74)
#213
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: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Set node version to 14 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14.x' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm bootstrap | |
- name: Run linter | |
run: pnpm lint | |
- name: Run test cases | |
run: cd packages/varlet-vue2-ui && pnpm test | |
- name: Report coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |