Skip to content

feat: update to v2.32.2 & add canvas rendering context typings. close… #108

feat: update to v2.32.2 & add canvas rendering context typings. close…

feat: update to v2.32.2 & add canvas rendering context typings. close… #108

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: restore node modules
uses: actions/cache@v2
id: node-modules-cache
with:
path: node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
- name: Install Deps
if: steps.node-modules-cache.outputs.cache-hit != 'true'
run: npm install
- name: Run test
run: npm run test