UNPKG

jcanvas

Version:

jCanvas brings jQuery's powerful syntax and capability to the HTML5 canvas. Quickly create canvas-based apps that can utilize layers, animations, events, and much more. jCanvas works on all modern browsers and platforms, including iOS and Android.

37 lines (28 loc) 824 B
# This workflow will do a clean installation of node dependencies, cache/restore them, and lint the source code and tests # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: lint on: push: branches: ['*'] pull_request: branches: ['*'] jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: submodules: recursive - name: Install pnpm uses: pnpm/action-setup@v2 with: version: latest - name: Use Node.js uses: actions/setup-node@v3 with: node-version: 20.x cache: 'pnpm' - name: Install dependencies run: pnpm install --frozen-lockfile - name: Lint project run: pnpm lint