fix: 修改canvasContext的createPattern、setFontSize等方法实现,补齐playground的样例 #28
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: codecheck | |
on: | |
push: | |
branches: | |
- release-3.6.8-app | |
pull_request: | |
branches: | |
- release-3.6.8-app | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: setup pnpm | |
run: | | |
npm --version | |
npm install pnpm -g | |
pnpm --version | |
- name: pnpm install | |
run: | | |
pnpm install | |
- name: lint | |
run: pnpm lint | |